Jump to content
Medved Trader Forums

Marty

Members
  • Posts

    51
  • Joined

  • Last visited

  • Days Won

    9

Everything posted by Marty

  1. So IB data feed doesn't support this even though their charts seem to be accurate? Which data feed would you suggest? Thanks,
  2. Hi, The Pre-Market Daily charts are not showing correctly. It seems that it is taking yesterday's candle and adding the pre-market to it. (see example: 1. TradingView, 2. IB TWS, 3. Medved Trader. Data for 2020-11-24, 8:45am) Thank you, Martin
  3. Can't wait to try it out, will save so much time Thank you
  4. Hi, Would be great if you could add Percentage to the Sliding Window value. Spend a lot of entering this for each stock. Hope you can easily add this soon. Thank you, Martin
  5. Hi, Would it be possible to have transparency for the Horizontal Line color. I have many horizontal lines on my charts (High, Low, open, close, etc) and would make the candles more readable. Have tried many combinations of dashed and dot lines but just can't get the look I want. Thanks
  6. Nice, Hope you can also make the changes to the stop loss, so that loss dollars always shows. Thank you,
  7. Hi, Would it be possible to make these changes to the chart trading capsule? Thank you,
  8. Personally I much prefer buttons for ease of use and visibility. With hotkeys you need to remember them all and you need to click the chart before you activate it. Both of these factors have led to multiple mistakes in my case.
  9. I have used AutoHotkey and like to have the buttons on each chart, that way I can trade on any chart. The way I would use MT is I watch 11 stocks at a time on 1 min charts, if I see a setup I can quickly put the quantity and click the button, very easy Currently this is how I use TWS but must make a button for each quantity (very annoying)
  10. Hi, For quick orders it would be nice to have the following. I use these button in IB TWS to quickly enter trades at the ask or bid with a preset offset so that all my order goes through. (The buttons with the *Asterix at the top right are armed and execute immediately) But I like your charts better and it would need only 2 buttons and the quantity box. Thanks.
  11. Working again, thanks for the great support
  12. Hi, I have updated through the software and now get this critical error when starting the app. Tried uninstalling, restarted computer and then reinstalled both version (Production and Beta) and always get this error and can no longer use your software. How can I resolve this. Thank you,
  13. How do I get the Horizontal Alert Trendlines that I draw on Historical charts to show on Intraday charts?
  14. How do I do the two following things: When using Autoscroll have the cross-hair follow the Y-axis (price) on the other charts instead of snapping to the close of the candle. Have trendlines from the Historical Daily charts appear on the Intraday charts. If these are not possible when, will you implement them soon. Thank you
  15. Wow, yes this is great. Thank you so much.
  16. On my chart I see the paintbar appear and disappear when I go up and down in .01 increments and I see it is calculating negative numbers as positive. Oops that must be it, time to stop for the day, getting tired
  17. Doing the following but seems that negative numbers are being seen as positive ones. Ex. -0.02 + 0.05 + -0.01 = 0.02 but in my formual it is being calculated as 0.08 public void MainCalculation() { DefinePaintbarParameter("AMOUNT", "Change in Cents", false, 0.01, 1000, 0.01, .01); if ((Close[2] - Open[2]) + (Close[1] - Open[1]) + (Close[1] - Open[1]) > GetPaintbarParameter("AMOUNT") && Close[2] < Open[2] ) { SetColor("Color",0xFF82FF4E); } }
  18. Was looking at the default Paintbars and noticed that "Def: Unusual Volume" had a small spelling error. public void MainCalculation() { DefinePaintbarParameter("VOLPERCENTUP", "Percent Up", false, 1, 10000, 1, 50); DefinePaintbarParameter("MINVOL", "Minimum Bar Vol", true, 0, 1000000000000, 1000, 1000); DefinePaintbarParameter("MINXPRICE", "Min Price", false, 0.0001, 10000, 0.1, 5); DefinePaintbarParameter("MAXPRICE", "Max Price", false, 0.0001, 10000, 0.1, 1000); if (Volume_Bar > Volume_EMA * (1 + GetPaintbarParameter("NUMTOCHECK")) && Volume_Bar >= GetPaintbarParameter("MINVOL") && SymbolData.Last >= GetPaintbarParameter("MINPRICE") && SymbolData.Last <= GetPaintbarParameter("MAXPRICE")) { SetColorAndShape("Vol Up", PBShape.ArrowUp_Hollow, SysColor.VolumeUp); TriggerAlert("Vol Up"); SetScanResult(100); } } I think "DefinePaintbarParameter("MINXPRICE", "Min Price", false, 0.0001, 10000, 0.1, 5);" should be "MINPRICE" Thanks again for your help Now working on Having a 1% change in the last 5 candles.
  19. Yeah I'm not very experienced in code but it would be helpful to have since many people seem to want to add to their Paintbars. I use this for backtesting.
  20. Thanks, And to activate only during standard market hours(9:30 to 4:00 Eastern Time Zone) would need to add what? Thanks again.
  21. public void MainCalculation() { if (this.Count(0, 4, Close > Open) > 3) { SetColor(002525); } }
  22. public void MainCalculation() { if (this.Count(0, 4, Close > Open) > 3) { SetColor(002525); } }
  23. Getting an Error on the Chart (small x besides paintbar name) Compile Errors in Paintbar ID: GHTIJIJTLT, "3 G in 5" Compile Error at (15,208): Error# CS1041: Identifier expected; 'this' is a keyword Compile Error at (75,208): Error# CS1002: ; expected Compile Error at (75,208): Error# CS1525: Invalid expression term ')' Compile Error at (76,208): Error# CS1002: ; expected
  24. Hi, How would I make a paintbar to indicate 3 green bars in the last 5 bars. Thank you, Marty
×
×
  • Create New...