Jump to content
Medved Trader Forums

Mike Medved

Administrators
  • Posts

    1,539
  • Joined

  • Last visited

  • Days Won

    123

Everything posted by Mike Medved

  1. That looks good (depending on how you defined those vars but I presume those are defaulted). Run it not as a scan, but as a paintbar (obviously replacing SetScanResult with SetColor) and check on a chart if it catches those conditions.
  2. That's a good question MTG - it is actually a pretty complicated formula, I tinkered with it until I found something that works reasonably well. it is Max(emamax, Min(average * 6, max * 1.02) where emamax = the max value of visible volume EMA, if you have it with the volume average = the average value of visible volume bar, and max = the maximum value of visible volume bar
  3. in c# you can add a variable either as Double X = Low[1] * 1.02; or var X = Low[1] * 1.02; Can you describe, in words, what you're trying to accomplish?
  4. For the second one - can you explain what you mean by MACD hashes are red going to green or closed red going to open red
  5. Yes - click and drag on the bottom horizontal axis. Click and drag on the vertical axis. Or right click on the vertical axis for more precise adjustments. We make it simple for you
  6. Ok - first, on the portfolio, if you don't already have #BCPT.ETH in it, hit Ins key and type it in and hit Enter to add it. Once it is in the portfolio's list of symbols, make sure your Start button is pressed and Binance is selected as the Source.
  7. The symbol (according to our symbology rules) in MT should be: #BCPT.ETH - I checked it with Binance and it works. https://www.medvedtrader.com/trader/WebHelp/index.html?symbology.htm
  8. If you in settings add negative % to Fibonacci numbers and turn them on in the retracements, you will get extensions.
  9. We got it. It is quite complex actually, because of the cloudflare issues. Gotta hook it up in MT. It's on the todo list
  10. Ok - in simple mode you cannot do that. Just no prepared variable to simply compare it. In advanced mode (and let's say 1-min chart mode), you create a state object of type FIFOQueue of size 24*60, and add to it the close of the current candle, then call the GetHighLow function to find the high and the low for the last 24*60 minutes. And of course, to check if it is within 2% of the low in the 24 hr range you would check if (Close-Low24)/(High24-Low24)<=0.02 If you don't think you can do it yourself, I'll throw it together and post it here.
  11. If you have a formula or an algorithm for it, it is definitely possible. Point us to it and we'll see about putting it in (or helping you code it in scans).
  12. GDAX and Binance for now. Others will be added if their API permits. Working on making a Depth Chart (we like to call it Canyon Chart) in MT. Here's a sneak preview.
  13. Problem with Discord (if I understand what Discord is) is that it is a live chat. We really don't have time to sit in the live chat, unfortunately. Someone has to program all these nifty new features.
  14. I started a Medved Trade subreddit: https://www.reddit.com/r/MedvedTrader/ Feel free to post. And subscribe
  15. I will have to think about how to do that. Thanks for the suggestion.
  16. No, not possible as it stands today. Basically it has a set of data it is working on (like a chart) and what you suggest would require two (or more) sets.
  17. I thought it was not streaming (updated every second is "snapshot" not streaming) because you mentioned before you were using Yahoo.
  18. https://www.medvedtrader.com/trader/WebHelp/charts_axes.htm at the bottom, the Vertical Axis section. Easiest way - click and drag on the vertical axis to adjust. Right-click and choose "Dynamic" to return to normal. To add space on the right - click and drag on the horizontal axis.
  19. That's good - but the source is not streaming MT only recalculates the scans when new data comes in. If new data comes in 10 times a second, that will eat up CPU. Of course, there are only a few stocks that are that liquid, so...
  20. Here's the big problem with that idea: the stock data is shared among all windows in MT. That is why it is problematic to have two sources get data for the same symbol - it clashes. In the case you describe, the big port, after it creates the little port, will continue running the scans on the stocks in the little port if the little port is connected to a real time source, and any data that will come in big port will conflict with the data on the same symbol collected by the little port. But - what we *could* do is allow a button to create a portfolio or a watchlist from the results of a scan on another portfolio - manually. Then you could conceivably open a big portfolio/scan, run that preliminary scan on it, generate another portfolio from it, turn off/close the big portfolio and place whatever scan you want on the newly generated one.
×
×
  • Create New...