| Coding Forum Collaborate, receive help, or discuss coding related issues. |
![]() | | Tweet | |
| | #1 | ||
![]() | Simple Paintbar Request Can anyone here help me out, I'm quite illiterate when it comes to tradestation's easylanguage. But I can download an ELD file quite efficiently ![]() With this in mind can anyone build pr point the way to an indicator that will display a yellow color for bars that form on 35,000-60,000 contract volume, and a light blue, for bars that form on over 60,000? Also using only HLC bars not OHLC. I've included a really crude drawing to help clarify Thanks everyone ![]() -Paul | ||
| |
|
| | #2 | ||
![]() | Re: Simple Paintbar Request See how this works out for you. Code: Input: LowVol(35000), HiVol(60000), LightVolColor(Yellow), HiVolColor(Blue); Variables: MyVol(0); MyVol = IFF(BarType > 1, Volume, Ticks); if MyVol >= LowVol and MyVol <= HiVol then begin PlotPaintBar (High, Low, Open, Close, "VolThreshold", LightVolColor, Default, 1); end ; if MyVol > HiVol then begin PlotPaintBar (High, Low, Open, Close, "VolThreshold", HiVolColor, Default, 1); end ; | ||
| |
|
| | #3 | ||
![]() | Re: Simple Paintbar Request Thanks for the super fast response! Its exactly what I needed... ![]() Is there any way that I could get it to not plot the open dash? Just the HLC? | ||
| |
|
| | #4 | ||
![]() | Re: Simple Paintbar Request | ||
| |
|
![]() |
| Thread Tools | |
| Display Modes | Help Others By Rating This Thread |
| |
| ∧ Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| ER2 trading with simple MP strategy | TinGull | Market Profile | 1 | 03-17-2012 02:41 PM |
| K.I.S.S. Keep It Simple Stupid! | Soultrader | Trading Articles | 36 | 04-27-2009 11:20 PM |
| Volume Based Charts Request for HELP | brownsfan019 | E-mini Futures Trading Laboratory | 51 | 12-19-2008 04:07 PM |
| Backtest Request | TinGull | Coding Forum | 2 | 04-10-2007 07:33 PM |
| Simple = Smart?? | pierre | General Discussion | 7 | 10-29-2006 11:25 AM |