EasyLanguage Treasure Chest

Status
Not open for further replies.
Quote from Tums:

ATR Label

This indicator prints the ATR range on the chart.
High ATR = previous bar Close + previous bar ATR value
Low ATR = previous bar Close - previous bar ATR value


<img src=http://www.elitetrader.com/vb/attachment.php?s=&postid=2295285>

USeful indicator.... can be better if historical high and low ATR ranges are plotted, as a band above and below the candles.
 
Quote from Jahajee:
USeful indicator.... can be better if historical high and low ATR ranges are plotted, as a band above and below the candles.

as you wish...

I have uploaded a new version of ATR Label with the option to plot historical lines.
Please see the original post to download the new code.

Enjoy
 
Hi Tums;
I am not handy with easy language to write any codes.
It will be great help if you post codes for ;
1/ CCI arrows as per my prevous post.
2/ Countdown for remaining points for range bars ,similar to Tick countdown,if possible.

I found this thread very helpfull.
Thanks harsh
 
Quote from harsh:
Hi Tums;
I am not handy with easy language to write any codes.
It will be great help if you post codes for ;
1/ CCI arrows as per my prevous post.
2/ Countdown for remaining points for range bars ,similar to Tick countdown,if possible.
I found this thread very helpfull.
Thanks harsh
I will take a look next week.
but can't promise you anything...
;-)
 
Tick Speedo

This indicator measures the time it takes to complete a tick or volume bar

A Short bar denotes an active market.

When the market is slow, it will take a long time to complete the bar.
A cap is used to limit the height of the histogram during slow times.


<img src=http://www.elitetrader.com/vb/attachment.php?s=&postid=2296133>



just in case you do not have the TimeToMinutes function:
Code:
[color=blue]
// function: TimeToMinutes
inputs: XTime( numericsimple ) ;
Value1 = XTime * .01 ;
TimeToMinutes = 60 * IntPortion( Value1 ) + 100 * FracPortion( Value1 ) ;
[/color]
25528
 

Attachments

Quote from Tums:

code for ATR Label

updated: with the option to plot historical lines
--------------------------------------------------------------------

I keep you busy I'm afraid:

C1032: 'ATR.Period' is not a valid identifier., line 24
compile failed
 
Quote from Goalgetter:
I keep you busy I'm afraid:
C1032: 'ATR.Period' is not a valid identifier., line 24
compile failed
Your vendor is the most qualified person to help you.
if these codes don't work in your system, they don't work in your system.
If you want to enjoy all these goodies, get an EasyLanguage compliant program -- either TraderStation or MultiCharts.
There is nothing else I can do for you.
:-(
 
Status
Not open for further replies.
Back
Top