Jump to content
Medved Trader Forums

Mike Medved

Administrators
  • Posts

    1,547
  • Joined

  • Last visited

  • Days Won

    125

Everything posted by Mike Medved

  1. ... whatever webull sends. They may not be sending volumes in AH?
  2. I really don't understand how brokerages (like that SuperHero one) think that people ONLY want to trade on their phone. They don't seem to have any other way to do it, at least that I see on their web site. Maybe I am a fuddy-duddy that doesn't understand the new generation of traders, but to me trading on your phone is not optimal.
  3. On a 1 min chart EMA with a period of 8 means 8 minutes. On a 5 min chart, EMA with a period of 8 means 40 minutes. If you want the same EMA on a 1 min chart, make it an EMA with a period of 40.
  4. Jerry responded to you in email. Yes, you can do all that in API.
  5. Adjusted it a bit. Should be enough. Will be in next beta.
  6. Hmmm interesting. What font size are you using? I would need to adjust the spread.
  7. We definitely do not use IPv6 - everything is done through IPv4 - regular HTTP/HTTPS or Websocket connections. Go ahead and disable (it is disabled on my machine).
  8. Questrade has not responded to any of our requests for info etc. If they were responsive we could work with them on getting this dealt with.
  9. That's correct - the Today's High and Today's Low are actual Today's high/low - right now, not at the time of the candle. If you wants a paintbar/scan to get the high and low for the day *at the time of the candle* you have to keep track of it yourself. It is pretty easy to do define .fctbNone{ color:#000000; } .fctbStyle4{ color:#0000ff; } .fctbStyle3{ color:#000000; }double DayHigh, DayLow; int PrevDayNumber = -1; then, inside the paintbar, at start, do: .fctbNone{ color:#000000; } .fctbStyle4{ color:#0000ff; } var info = GetTradingSessionInfo(Timestamp); if (info.DayNumber!=PrevDayNumber) { DayHigh = High; DayLow=Low; PrevDayNumber=info.DayNumber; } else { DayHigh = Math.Max(DayHigh, High); DayLow = Math.Min(DayLow, Low); } There ya go.
  10. On the left? The thing I changed was making the values on the axis not overlap but space out.
  11. Lemme think how to do that. It is not trivial Don't really want to micromanage the "show current value" thing to the point where it is individual.
  12. You can trace the values with the mouse cursor (if you have that turned off, press Shift then move the mouse)? You can make the fonts smaller on the charts. Can you put a screenshot of how TradingView un-overlaps the labels?
  13. Doug, if you have the SDATA.BIN file in your MT directory (it should be C:\Users\<Your User Name>\AppData\Local\2GK\Medved Trader) - please send it to us via WeTransfer - I will try loading it and see how it gets wiped out.
  14. Really have no way to selectively import things...
  15. NaN - no, I found/fixed things today. Do you have our latest EXE link? - just download from there again.
  16. from MT code: S1 = 2 * pivot - PrevDayHigh S2 = pivot + PrevDayLow - PrevDayHigh; S3 = 2 * pivot + PrevDayLow - 2 * PrevDayHigh S4 = pivot + 2 * PrevDayLow - 2 * PrevDayHigh which is same as here: https://www.babypips.com/learn/forex/how-to-calculate-pivot-points for example Your S3 is not same as ours. Not sure why. I could implement MyPivots' formula as a separate indicator. What would you want it called? The NaN should be fixed - get latest.
  17. Doug, about the PP values - the easy way to find out what is going on is: put in horizontal lines for daily Prev Close, High, Low, Open. Those will show you what those values are on your chart. Then use those values to calculate the PP values - they should match exactly what MT is showing. Then look which of those values is different in your other formula that gives a different value.
  18. Well yes - the message says that you're connecting to Coinbase feed but requesting from it symbols like BCHG.
  19. Doug, when you say you're running it in real time as 1 point Range Bars - you mean you're running it as a paintbar in a chart?
  20. If you choose Band on Top, if there are two such indicators, then the ordering is from top to bottom in the order of the indicators in the indicators list. If you choose Band on Bottom, the ordering is bottom to top. That's natural - the indicators are plotted in the order they are entered. So the first one is plotted at the very bottom, the next one one step up etc..
×
×
  • Create New...