Jump to content
Medved Trader Forums

Mike Medved

Administrators
  • Posts

    1,539
  • Joined

  • Last visited

  • Days Won

    123

Everything posted by Mike Medved

  1. Ok - I fixed Alligator indicator (was not working right for SMMA and EMA) and added Gator Oscillator. Will be in next beta.
  2. StockScout: from that doc, 3 are implemented (1 is Alligator, the other I showed the code for above, and MFI has always been included). Guess I could do Gator Oscillator as well.
  3. Ok, Lapa, I took a look at your link. Basically it says plot a down arrow at a candle whose high is highest in 5 candles - 2 before and 2 after. Reverse for lows. That looks a bit too simple. Are you sure that is what you want? With a paintbar, just make an Advanced paintbar, no indicators, and put the following code in: .fctbNone{ color:#000000; } .fctbStyle5{ color:#0000ff; } .fctbStyle3{ color:#ff00ff; } .fctbStyle1{ color:#a52a2a; }public void MainCalculation() { double H = High[2]; if ( H>High[4] && H>High[3] && H>High[1] && H>High ) SetColorAndShape("Local Max", PBShape.ArrowDn, SysColor.Negative); double L = Low[2]; if ( L<Low[4] && L<Low[3] && L<Low[1] && L<Low) SetColorAndShape("Local Min", PBShape.ArrowUp, SysColor.Positive); } It could also be done with Simple paintbar, but would involve 8 rules. Advanced is easier. As I said, this will not put the arrows at the local min/max, but at the candle that created the local min/max - that is, the arrows will be shifted 2 to the right compared to the ones in your link. But the logic is there. Or you could separate it into two paintbars so you could show one of them above candles and the other below candles.
  4. 1. You can just start typing the new symbol and hit ENTER. 2. You can "link" the file and some portfolio and every time you click on a different symbol in the portfolio, the chart would change to that symbol. See https://www.medvedtrader.com/trader/WebHelp/index.html?changing_charts_symbol.htm
  5. We will start doing this in a bit. Need to do a few videos, on various topics.
  6. I will look at it this weekend. The problem with modifying previous candles connected deeply to the whole charts code. It is very much oriented at only the last candle and its indicator value changing.
  7. I may implement it as a System Paintbar that will be automatically included in MT. But the arrow will not be plotted N candles back, but on the candle that triggers it. Will that do?
  8. I really *really* hate backward-stamping indicators. If anything, that arrow should show on current candle, because it is the current candle that tipped the scale into the arrow showing up.
  9. 1. "Relative Volume" - that would not be very easy to implement, mostly because it has to look at more than 1 or 2 day's data (and scan tries not to use more than that in order to save on memory consumption and speed) 2. Change X minutes - in MT advanced mode (for let's say 5 minutes), that would be Close - Close[5] or, if you want it in percent, (Close-Close[5])*100/Close[5] 3. Volume X minutes - I think that is the same as MT's "Pace" indicator? You give it a period (let's say 10 min) and an averaging period (let's say 2 days). It calculates what the average volume is for ANY 10-min period during the last 2 days and compares (percent) the last 10 minute volume to that. 4. Volume Today and Spread - those are there already (well, Spread is Ask-Bid, but you know what I mean) 5. Average Daily Volume - that's in there but unfortunately not every source sends that,
  10. Thanks. There is a bug, specifically for historical VbP and specifically for the case where you extend X scale significantly. For now, reduce the X scale extension. For later, we will fix it in the next release.
  11. I missed that one when doing paintbars. It's on my immediate todo list.
  12. I could make an indicator that is described here: http://www.forextraders.com/forex-education/forex-indicators/alligator-indicator-explained/ Basically 3 shifted SMAs. Is that what you meant?
  13. Working on a built-in scanner. Based on paintbar code. Wouldn't you like to have that?
  14. Do you mean lock the crosshair so it stays in one place and does not follow your mouse?
  15. I tried it - am getting *something* in the Option Risk Analysis window when using Questrade, but not accurate. I checked - the inaccuracy is because Questrade is returning 0s as the Last,Bid and Ask values for options that should have good values. But that could be because our account with Questrade is a testing one, and it's weekend. Please do this: put the exact same options into a portfolio in MT that you have in the Option Risk Analysis window and run it. Are you getting good values for those options in the portfolio?
  16. remisha: the scanning criteria will be done very similar to the way current Paintbars are done. Paintbars can be done in a Simple or Advanced way. The Simple paintbar consists of a set of rules that can be exactly what you say: for example Stochastic K% crosses D% both ways. Take a look at paintbar editor in your MT (on the Dashboard there is a Manage Paintbars tile).
  17. MTG, we would not be able to scan the entire stock universe, for several reasons 1. It's a lot of data that costs a LOT to acquire 2. The processing would have to be done on our own servers, which we don't want to do because it would be very costly and would introduce another point of failure. 3. The flexibility would be lost. It is simply impossible to allow scanning on one (or even several) server using every criteria every user will come up with. It doesn't scale. The way we intend to allow scanning is to tie it to MT's portfolios. You would enter the symbols you want to monitor into a portfolio. Connect it to a data source for L1 data. Some data sources allow 100 symbols. Some 500. Then you would apply a scanning criteria (using paintbar-like code) to it. Then you let it run and the scanner would monitor the data and apply the criteria to it and show results to you in real time. Note that I am talking about a scanner, not about a filter. A "filter" is run once and spits out the results (usually on a universe of stocks). A "scanner" would run on real-time incoming data for a set of stocks and run it through the criteria, in real-time, to pop up results.
  18. Ok - from pics you sent, seems like you have a list of stocks and the various criteria pop a checkbox in a particular column. What we were thinking about would be not to show symbols for which the criteria are negative.
  19. 1. As far as I know, TC2000 does a filter on historical data, not real time scanning does it? 2. Can you take a snapshot and show us?
  20. People who are interested in having a real-time technical scanner in MT - check in and we can discuss the best way to implement it. We have some thoughts on it, but would like some feedback.
  21. I went to StockCharts - didn't see ATR Trailing Stop in their indicators. Can you show me how they're doing it? Link or pic.
  22. The ATR Trailing stop is a line that is above or below the price. When the price breaks the line, the trailing stop switches from long to short or back. It cannot continue once the price breaks the line...
  23. Thanks for reporting this (and persisting). I found the bug and fixed it. Will be in next release.
×
×
  • Create New...