Jump to content
Medved Trader Forums

Mike Medved

Administrators
  • Posts

    1,543
  • Joined

  • Last visited

  • Days Won

    124

Everything posted by Mike Medved

  1. Time Bars is an indicator that is only relevant for non-time-based charts. It shows the time it took each candle to form.
  2. I have TC = (Prev High + Prev Low)/2 and BC = 2*Pivot - (Prev High + Prev Low)/2 Is that reversed?
  3. Any scan that you can express as references to certain symbol-specific parameters in MT is possible. Simple scans are a set of rules, evaluated one after the other. For example, if the rule is that price percent change change today is between 2 and 100, you can make two rules. 1. if SymbolData.ChangePercent < 2 return and 2. if SymbolData.ChangePercent > 100 return this way if it is between 2 and 100 it will go on to the 3rd rule - see an example rule here: 3rd rule could be - if Volume < 100000 return Note: this way you eliminate all unwanted symbols by doing "and Stop" rules. Then the last rule could be the positive one, for example if Close > 5 Set Color or Set Scan result etc... I thought our videos on scanning or paintbars were pretty clear... But any suggestions on how to make them better are welcome. Of course, if you want to switch the scan to Advanced mode, you would be able to just code the criteria in C#, combining as many of them in one if statement as you want and doing more sophisticated logic.
  4. I'll take suggestions from users on all these points. Not sure what "point 3 is not necessary" means.
  5. 1. naming s2-s3 midpoint m0 but r2-r3 midpoint m5 is a bit inconsistent. There should be a logical naming scheme. 2. should each one be selectable or just a general "show mid lines" checkbox? 3. If let's say S1 or S2 are not visible, should the midline between them also be invisible?
  6. 'cuz I am not sure what a "floor midpivot" is. Someone else asked for lines that are between pivot lines (like between P and R1 or between R1 and R2) - I am not sure exactly how to do that. Can there be a mid line between P and R2 or only between adjacent lines? Should each one be selectable or just a general "show mid lines" checkbox? What should the label be for the line? If let's say S1 or S2 are not visible, should the midline between them also be invisible?
  7. ehjump - sure. Calc the value in the advanced paintbar code and do a named SetColor and SetYValue for it. Then, in the paintbar, choose the "fill" shape for it and whatever color you like.
  8. Please point me to a link that discusses these.
  9. You’re talking about a “Simple” scan – based on a series of rules. To do what you want you have to have the first few rules rule like this: If Condition then (do nothing) else return negative result and stop And the last rule would be: if Condition then return positive result else return negative result Note the “and stop” in the initial rules – that’s important.
  10. No. MT is written in C# and is a standalone Windows application, does not run in a browser even on Windows, much less on a Mac. Some of our users run MT in Parallels or another Windows emulator on their Macs though.
  11. Oh in case you wonder where the option is (and for those reading this) it is in the Settings. We added a "Search" in settings that allows you to find the setting by just typing a few letters of it in the search.
  12. Ok I checked the code and traced some things and it seems to work as it should. Note: the one-min volume as used in the alert is not what you see in the volume indicator. That volume is divided on 1 min (if that is the frequency) boundaries. The alert machinery just keeps a queue of all ticks in the last 60 seconds. Then it totals the volumes in those ticks and divides it by the number of seconds between the last tick in the queue and the first tick. Then it multiplies that # by 60 to get the running one-minute-volume. That would skew things a bit for very thinly traded stocks... I did it that way so that if you have a sudden uptick in volume in a stock that may not trade every second, the reaction would be faster. Maybe I could just take the total in the last 60 seconds and NOT scale it by the actual time between the last and first tick...
  13. Will do after the new prod is released.
  14. IB allows OTA (One Triggers Other) orders, which is what you're looking for. On the bottom of the trade ticket you will see some "Conditionals" orders. Pick OTA.
  15. Even when they converge, the "trace" values should not overlap. The right side values may. So if you move the cursor all the way to the right, the trace values would show you what the indicator values are.
  16. Once we're done with a small avalanche of things here...
  17. I researched this. What MT is using right now is the Windows compatibility mode, which, on the >100% basically renders to a behind-the-scenes bitmap, then stretches the bitmap. If you look really closely, that blurs things a little. Usually, since on a 4K display pixels are so close together, you really don't notice it. (I had to run high-DPI on a regular display in order to see the effect). It is possible to change things in MT to run in "DPI-aware" mode, I experimented with it, which would automatically change all font sizes and eliminate stretching. It will take redoing things on almost every window in MT, creating new graphics etc. Right now we have a bit on our plate. Maybe at some point, during a "quiet period"...
  18. Yes, Jerry released the beta where I didn't finish this yet Will be in next one.
  19. Drawing = annotations And hm I just put it in for completeness didn't know no one else is doing it.
  20. We have investigated this and going forward we definitely have to make MT a "DPI-aware" application, meaning it would scale nicely and sharply instead of the default scaling that Windows subjects it to, which fuzzes it out (for scales more than 100%). Not sure when that would happen. We will fit it in when we can.
  21. Pivot Points now have TC and BC lines that can be shown.
  22. Yes, I saw why they were happening. Will put in the minimum criteria.
×
×
  • Create New...