Jump to content
Medved Trader Forums

Mike Medved

Administrators
  • Posts

    1,542
  • Joined

  • Last visited

  • Days Won

    124

Everything posted by Mike Medved

  1. Well, the way to do this would be - have a state variable, let's call it Boom (as in "something happened"). Set it to 9999999 or something to begin with. Any time an event happens (like "Outside bar (engulfing)") - set CurrentState.Boom to 0. If the event did NOT happen, do CurrentState.Boom++ This way you can check the CurrentState.Boom to see how far back the event happened.
  2. To tell you the truth, I never liked it It wasn't a true ticker tape (which I believe shows block trades as they happen?). I guess we could make one that would actually do that (show trades as they happen) but I am not sure what criteria to apply (that is, which trades to show). Also, during high volume times it probably would go way too fast?
  3. This is tough to do. Basically, those patterns look great in pictures, but when you look at that stuff in real life... The lines are never exactly parallel, the local minima/maxima are never exactly the same, etc. I will look into it. Candle patterns are a lot easier because they really only work on maximum 5-6 candles. The chart patterns can be quite big - 30-40 candles, right? It would help if there was some word descriptions of those. Like let's say ascending triangle = "local maximum followed by local minimum followed by a local maximum that's approximately the same as first followed by local minimum that's significantly higher than previous one, followed by a move significantly above the maxima" - would that be an accurate description?
  4. When you export, select the "User Settings" checkbox.
  5. If you missed it, I'd like to point to our convenient looping functions in Advanced code: https://www.medvedtrader.com/trader/WebHelp/index.html?advanced_looping_functions.htm From our support emails, it seems that paintbar users may not be aware of them. For example, if you have a variable SMA20 which is an SMA and you want to do something if it has been rising for the last 4 candles, all you have to do is call: All(4, SMA20 > SMA20[1]) // will return true for that condition. Don't have to use a for loop etc. or you want to check if the Close was above SMA20 in at least 5 out of 6 last candles... Count(6, Close>SMA20) >= 5 nice and simple.
  6. When you say "Take last SIZE" - where is that last size coming from? If that is from the Last Size column in the portfolio, that's the last trade's size. Which means that the volume increase would be only for the last trade. That's not what you want. When you say "Size last X minutes" - without going back and looking at past data, how exactly can we get that?
  7. In order to know the volume increase you have to know either what the cumulative volume was X minutes ago, or to have a running queue of all ticks for the last X minutes and add up those volumes. Either way, that's a "chart" kind of thing, and not just simple L1 data. That's what Jerry meant by "requires chart/paintbar machinery to compute".
  8. Note that although there is only one scan per portfolio, it can include as many different criteria as you want and concatenate the results in the ScanResult string...
  9. Since Poloniex does not do USD, it would be #BTC.USDC
  10. You can do all kinds of customization in the message. When you open the notifications dialog, there is a second tab there called "Note". Switch to that, make it something other than "Not Change" and right-click to insert all kinds of info about the symbol, its price etc. [DESC] will contain the original alert note passed from the alert itself.
  11. MOber, the point of you giving the alert a name is so that you can set up notifications for that alert later. When you place the paintbar (or any other indicator) on the chart, you can edit its parameters by clicking on its legend in the chart. Once the parameter popup opens for the paintbar, you will see the Alert you set up. You can turn it on/off or set up its notification options there.
  12. MOber, if you have an alert trigger inside the paintbar or scan, then edit the notifications within it once it is placed onto the chart or the portfolio, one of the notification options is to send an email.
  13. I knew it sounded familiar. That feature is in MT already. Switch the chart to Renko, then go to the View ribbon menu, Options button. First option is "Show Wicks".
  14. Either right-click on the vertical axis or click and drag on it - that will allow you to change the dynamic scaling to something else.
  15. What you want is either Paintbars (if you want to do the analysis on the chart) or Scans (if you want to do it on multiple symbols) See our help (when you hit F1 in Medved Trader or here https://www.medvedtrader.com/trader/WebHelp/paintbars.htm ) We also have some videos explaining how it all works: Our channel: https://www.youtube.com/channel/UCD9KD0V7T62Y29i1YYw9-jQ Paintbar tutorial part 1: https://www.youtube.com/watch?v=aKj9L-9_TM4
  16. That's an interesting twist on Renko charts. Will look.
  17. Hit the Ins key and type several symbols separated by commas or spaces.
  18. When you are drawing a line on an MT chart, on the horizontal and vertical axis it shows you the line measurements. As for triggering a trade - no, MT doesn't auto-trade. There are a lot of reasons for it. It is not as simple as just triggering a trade.
  19. It's not really hidden - the paintbar is painted under it... you could change the color of either text or the paintbar, and it would show better. The problem with doing micro-customizations like that is that the options just multiply out of control and no one knows about them. What you can also do is make an "empty" paintbar - one that never has colors. Then place it on the chart showing as band on bottom before the other paintbar. Adjust its width to match the height of the text. That will push the next paintbar higher.
  20. Well... The whole point of the heatmap is to have things subdivided by sector and by size and nicely tiled etc. etc. I don't see how to do it with an arbitrary collection of stocks, when you don't know to which sector each belongs.
  21. Currently - no cannot thicken it. Will see.
  22. The trades are recorded in pressure bars only if they go at (or, depending on the setting) below bid or at or above ask. NOTE that the "bid" and "ask" in the previous sentence are not the current tick's bid or ask but the previous tick's bid or ask. If the trade went off between bid and ask, it would not be recorded.
  23. Contact us at support@medvedtrader.com, suggest your favorite payment method, and we will individually process it.
×
×
  • Create New...