Jump to content
Medved Trader Forums

Jerry Medved

Members
  • Posts

    9,143
  • Joined

  • Last visited

  • Days Won

    446

Everything posted by Jerry Medved

  1. There is an issue with TD Ameritrade servers this morning. Will keep you posted. If already logged in, quotes will work, but trades/transactions or new logins will have problems
  2. I just checked the log you sent. It has the following error: Requested market data is not subscribed.Error&NASDAQ/IND/Top&NASDAQ/IND/Top So basically your account is not subscribed for this. Contact IB support - they would be able to help
  3. any update on what? I didn't see any email or upload from you
  4. you cannot post picture here. you can email support@medvedtrader.com but also, please do this: FILE / HELP => Send log/settings to support - and include the URL to this post in the comments
  5. I just tried $NDX here with IB and it is working fine. Do you have real-time data for it in TWS? If not, MT will not be able to get it. You would need to update your account to be able to get real-time data on it
  6. Jerry Medved

    ABS

    Assuming you have that EMA_Line defined, here is what the code (in Advanced Mode) would look like: .fctbNone{ color:#000000; } .fctbStyle4{ color:#0000ff; } .fctbStyle3{ color:#000000; } .fctbStyle1{ color:#800000; }public void MainCalculation() { if ((Math.Abs(Open - Close) / (High - Low)) <= 0.2D && Low < EMA_Line) { SetColor("Main", Color.White); } else if ((Math.Abs(Open - Close) / (High - Low)) <= 0.35D && Low < EMA_Line) { SetColor("Main", Color.White); } } NOTE: you are setting it to White in both situations - I assume you want to set it to different colors. You can change them as needed. Also, right now in the example I defined one named color ("Main"), so when you add the paintbar to the chart and look at the parameters, there will be a color box defaulted to White, but which you can change. That way you do not have to hardcode the color in the Paintbar definition. If you use 2 different names in the 2 IF statements above, then there will be 2 defined colors and you would be able to set them in the chart indicator parameters independently.
  7. ok, but how are you entering it into MT? just NDX, or $NDX You have to use MT symbol formats
  8. cannot what - what happens when you try to bring up raw data? does the window come up with no data? does no window come up? Are quotes updating on the symbol?
  9. but it won't stay that way - it doesn't "re-sort"
  10. sort by last, then sort by range
  11. You can do that now. If you sort on column A, then switch to column B, any entries in B that have the same value will be sorted by column A. But not something we will be storing since that would have a performance impact.
  12. not sure what you mean by "deleted index data" or what index data refers to really. Can you please elaborate?
  13. The total is not just the sum of all rows. It is the actual change in value from start of day in the total. so any changes to the portfolio would also reflect in it. Look at the total chart
  14. don't know. not seeing it on support either
  15. NOTE: did not receive the file
  16. that works but I meant MT support. Support@medvedtrader.com
  17. I checked with IB and do not see any issue. Please set the raw data to show all columns, then email a screenshot to support
  18. if you clear the data on the chart, does it work after that?
  19. Nothing changed on our end. You most likely are not using the TradeKing account in MT for anything. If that happens, after a while, MT registration will expire. Open the Account View or change the quote source to TradeKing, Then restart MT and it will be OK again.
  20. Mutual funds will update either way if you have them in MT format, meaning with the _ prefix. TDA datafeed by default does not return every tick. It is consolidated. You get about 4 updates per sec max. If the stock trades more often than that, a row in raw data may represent multiple actual trades. If you select to Stream TICK Quotes, MT does some magic to merge two datafeeds from MT together in order to get true tick quotes.. Sometimes TDA datafeed for tick quotes goes belly up, at which point you may notice that bid/ask are updating, but not last or volume.
×
×
  • Create New...