Jump to content
Medved Trader Forums

Mike Medved

Administrators
  • Posts

    1,544
  • Joined

  • Last visited

  • Days Won

    125

Everything posted by Mike Medved

  1. Ok there was a bug in API removing white spaces from inside symbols. Will be fixed. Jerry will send you a link.
  2. G-d forbid merlin No it is just another data feed in MT. The reason why I called it "dxFeed's Medved Trader" is because they like to call every app that connects to them "dxFeed's something" and put them on their web site. The integration would bring in all their features that are compatible with MT (for example, they are one of the few data feeds that provide info on all symbols they carry, so symbol lookup will be working in MT when connected to dxFeed). Once this is all done I will have to look at what extra features they have.
  3. I am sorry what do you mean as "offset"? How about displaying it on a chart below or above the main chart? Alert - make a paintbar that does it. The parameter in Smoothed HA indicator would be "Arrow" and it would be either 0, 1, or -1.
  4. Ok - when you say see liquidity in histogram format - what exactly do you mean, Don? In the picture above, where is liquidity in histogram format?
  5. No, the alerts system is as is... If you want fully customizable alerts, with as complex logic as you want, use the scanning in portfolios (and use the TriggerAlert() function in them).
  6. Convert your paintbar to Advanced mode - and use SetScanResult(BarVolume[1]); (without quotes). As for the candle size for the bar - when you use the scanner it lets you set it - under FREQ on the Scanner tab in the ribbon menu.
  7. You could, if you use a scan in your portfolio and just SetScanResult to the BarVolume[1] (you can also set the scan result column name to something like "Lst Bar V"...)
  8. Yeah I saw it before (speaking of which, we will be "dxFeed's Medved Trader" soon - that is, we will have dxFeed available in MT). I am really not sure 1. what EXACTLY is being shown. It looks like a huge mess... and 2. Since there is no such thing as historical depth of market, the only way to construct that chart is to turn it on and have it accumulate.?
  9. Left and right of the candle are just Volume by Price - the left side is the first half of the candle's period, the right side is the right half. The "open" and "close" lines are median prices for the left VbP and the right VbP.
  10. I am really not sure what that is supposed to be Is that L2 history at each candle?
  11. Is this in hotkeys? If so, min function always takes 2 parameters. You have to do min(var1, min(var2, var3)) in order to do 3 parameters.
  12. The code syntax is C# (with a couple of enhancements, but 99% C#). The reference - press F1 in MT or go here: https://www.medvedtrader.com/trader/WebHelp/advanced_-_all_available_funct.htm
  13. I am not sure what "yield between open and close[1]" is... But in general yes all that stuff can be done. 1. For SMA and other indicators - just plug them right into the scan/paintbar. 2. For averages - look up StateFIFOQueue and examples using it.
  14. Well, the language is C# (with a few enhancements like the Looping functions that get pre-processed before compiling). The functions and system variables available are documented in our help - either press F1 in MT or go here: https://www.medvedtrader.com/trader/WebHelp/advanced_-_all_available_funct.htm As for repository - that's a fairly big project..
  15. Not sure I really cannot suggest the algorithms, but if you can think of a condition I can help you code it.
  16. You would run a historical chart scan, and use .fctbNone{ color:#000000; } .fctbStyle7{ color:#800000; } .fctbStyle5{ color:#0000ff; } .fctbStyle8{ color:#000000; } DefinePaintbarParameter("Period", "Period", true, 1, 100, 1, 5); var num = Convert.ToInt32(GetPaintbarParameter("Period")); if (Open > Max(1, num, High)) { SetScanResult("O>HH"); }
  17. MT only scans stocks on the data that comes in . Which means you have to enter all the symbols you want to scan into a portfolio, then put the scan on the portfolio. The code for the scan in question would be simple: .fctbNone{ color:#000000; } .fctbStyle5{ color:#0000ff; } if (SymbolData.Low52 != SymbolData.High52) { var RangePer = (Close - SymbolData.Low52)/(SymbolData.High52 - SymbolData.High52); SetScanResult(Convert.ToInt32(RangePer)); }
  18. We're in the final stages.
  19. Hm only a couple of providers do (we probably should take it out of L2 for now). Upcoming - dxFeed will be incorporated into MT - it has LULD in the feed.
  20. Two things that may or may not help.. 1. Once you set the date to what you want, use "Set as Default" then any time you add VWAP to another chart it will be set to the same date. 2. You can sync indicators for all charts. Right now there is no way to drag the anchor... But even if there was, you'd still have to do that on every chart.
  21. Use Channels instead of boxes. Make them horizontal. I just checked and there is a bug where extend right also extends them left. Will fix.
  22. Ok it is a bit strange. The ONLY SetColor you have is Red but it still shows Green? Send me the scan - export it and attach to support@
×
×
  • Create New...