Jump to content
Medved Trader Forums

Mike Medved

Administrators
  • Posts

    1,544
  • Joined

  • Last visited

  • Days Won

    125

Everything posted by Mike Medved

  1. Thanks for the report Doug. Will be fixed in next beta - the order of the buttons will be preserved, per window.
  2. I changed the way it is done. It was looking at the one-min projected volume rather than the actual one-min volume. On liquid stocks it is basically same but if the trades come in 5-10 seconds apart, it may make a difference. Will be in next beta.
  3. Hm - the whole point of hotkeys is you hit the key and magic! something happens. What you propose would not be like that... I will think about this.
  4. Added option "Align Candles on Hour" to Settings / Charts / Display. Default is true, but if you uncheck it, it will do what you want. Will be in next beta.
  5. Are you sure you don't have Period in that hotkey? I just tried this: And it just switches frequency... Ok i see it. If NoChange, it is not really NoChange If the period is NOT THERE it works as it should. Will fix. For now just remove the Period.
  6. This is for a historical chart, right? .fctbNone{ color:#000000; } .fctbStyle8{ color:#000000; } .fctbStyle5{ color:#0000ff; } .fctbStyle7{ color:#800000; } .fctbStyle6{ color:#808080; } .fctbStyle2{ color:#008000; }StateFIFOQueue Highs; Double AllTimeHigh = 0; public void MainCalculation() { AllTimeHigh = Math.Max(AllTimeHigh,High); Highs.Add(High); Double H,L; Highs.GetHighLow(out H, out L); SetColor("Line Color", Color.Green); if (H == AllTimeHigh) SetYValue(H); else SetYValue(YSkipValue); } /// <summary> /// Is called at start of paintbar calculation, should be used to initialize anything needed for the paintbar /// </summary> private void PaintbarInitialize() { Highs = new StateFIFOQueue(90); } /// <summary> /// Is called at start of paintbar calculation, should be used to clear the paintbar state /// </summary> private void PaintbarClearState() { Highs.Clear(); } /// <summary> /// Saves paintbar state (called internally). /// </summary> private void PaintbarSaveState() { Highs.SaveState(); } /// <summary> /// Restores paintbar state (called internally). /// </summary> private void PaintbarRestoreState() { Highs.RestoreState(); }
  7. Quote box shows the current quote for the stock. Trace box shows the data for the candle under the cursor. ... and you can move the boxes if they obscure things. You can also change what is displayed in the boxes.
  8. Press Shift as you're moving the mouse over the chart. The Trace box will show up and the full-chart crosshair. Click on the little gear on the Trace box and change it to "Always Show". You also have settings in Settings / Charts / General - under the Tracing section.
  9. I also changed the code so that the prices will be rounded to trading increments automatically.
  10. You create a hotkey, set the Order to be StopMarket, with the Stop Price of Price - 0.15. Then you assign a key to it. And execute it on a chart or on DOM etc..
  11. Bigbocarat, the "simple mode" is a little bit of a "reversed logic" because you use "and stop" on a condition that you don't want. Whereas in advanced you include the condition in the if statement that you do want.
  12. I hope (and presume) that by "current bar" you mean the last candle on the chart. Added: BarHigh BarLow and BarOpen - only for hotkeys executing on Chart windows.. Will be in next beta.
  13. https://www.medvedtrader.com/trader/WebHelp/variables_and_conditions_secti.htm look for round, floor, ceil functions and their variants.
  14. "pwd". I will change it to accept "password" as well. Sorry about that.
  15. Was screwed up at some point. Fixed will be in next beta release.
  16. Put your cursor on the line of the oval. Right click. In the parameter popup that shows, check the "Fill Color" checkbox, change the color and opacity.
  17. Well the most common placeholder really is [DESC] which I would need to generate using bogus data.. I will look at it.
  18. Since the entered text contains place holders that need to be inserted, and I would need to generate bogus data in order to do that, I just decided to put a phrase in, since the point there is to test the voice and speed... Overlaps: if not checked, the spoken phrases will be sequential. That is, if two alerts are triggered very close to each other, the speech from the two will not overlap. I will put in a ( ? ) in there to explain it.
  19. Doug: yes and Fadde Dance: it is available right now. Go to our web site and download/install the beta version.
×
×
  • Create New...