Jump to content
Medved Trader Forums

Jerry Medved

Members
  • Posts

    9,225
  • Joined

  • Last visited

  • Days Won

    453

Everything posted by Jerry Medved

  1. I see that you requested it, but the change does not take effect until you click the link in the verification email that was sent to your new email address. Once you do that, the new email takes effect on your account. At that point, start MT. If it is set to automatically login (if you save the password), it will update everything automatically. If you did not save the password, then login with the OLD email. MT will take care of changing stuff. . this way all the settings will be saved.
  2. I thought you said that you found it? I saw that you got unregistered earlier today, so I figured the backup before that would be the best, but if you already restored OK, disregard that.
  3. It would be in Documents / Medved Trader / Backup and the file name would have a date before today.
  4. ah, I think I see a problem. If you restart, you should be OK and I will clean up the registration stuff.
  5. Paula, I checked our logs and I show that you are in fact logging in fully registered. What makes you think you are not?
  6. TD Ameritrade issue is resolved. as for your registration, I saw that you registered today - I do not see any other signup for you. If you got billed on the 9th from us, you would have received an email receipt. Right? can you please forward that so I can see? if there is some duplication, I can take care of that.
  7. TD Ameritrade server issue is resolved. Should be back up
  8. 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
  9. 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
  10. any update on what? I didn't see any email or upload from you
  11. 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
  12. 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
  13. 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.
  14. ok, but how are you entering it into MT? just NDX, or $NDX You have to use MT symbol formats
  15. 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?
  16. but it won't stay that way - it doesn't "re-sort"
  17. sort by last, then sort by range
  18. 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.
  19. not sure what you mean by "deleted index data" or what index data refers to really. Can you please elaborate?
  20. 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
×
×
  • Create New...