EasyLanguage Treasure Chest

Status
Not open for further replies.
Quote from JM64:

I did do that and got a syntax error that said "word too long"

To get the code for the HH/LL, did you just click the link and open the code up in a browser, or did you right click on that link, 'save target as' and pull down the text file?

I did it by clicking the link opening the code up in a broswer window, but the formating was all wrong.

Saving it as a text file gave it to me the way it should be. Then I created a new indicator, saved and compiled it.
 
Renko-Adaptive indicator
(based on ATR)
Written by konkop 07.03.2002.

note: Set the plot style to Bar High and Bar Low.


discussion

<img src=http://www.elitetrader.com/vb/attachment.php?s=&postid=2254938 width=800>
note: the chart is for illustration only. the subcharts are not part of Renko.




Right click to down load:
120
 

Attachments

Renko-Adaptive AutoTrade
(based on ATR)
Written by konkop 07.03.2002.

note: I have not tested this code.
For educational purpose only.


Right click to download:
 

Attachments

Pivot Points
by ABC Trading Group

This must be the best Floor Trader Pivots implementation I have seen.

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


right click... save to disk...
203
 

Attachments

Quote from Tums:
How to draw Tapes (tight trendlines)

Have anybody gotten this code to work in OEC? It compiles, and everything seems fine, but for some reason nothing is being plotted on the chart.
 
The code for the HH-HL label-indicator with function codes.
Have anybody mastered this indicator with the OEC plattform? Nothing is plotted on the chart, just like the tape-indicator.
 
I don't think OEC has implemented the text_new keywords.

The best you can do is to replace these actions with a plot... instead of a text label, you will get a color dot on the chart.
 
Quote from Tums:

I don't think OEC has implemented the text_new keywords.

The best you can do is to replace these actions with a plot... instead of a text label, you will get a color dot on the chart.

I do not know how to change that in the code? Could you maybe plot the code with dots insted of text? Thanks for helping out.

veggen
 
Here is Aneks "Market-E-Motion" indicator. I think that is what he named it.

It plots high of day, LOD, 25% - 50% and 75% retracement between these points.

It is a very simple, but effective indicator.

Code:
[color=blue]
variable: HOD(0),
LOD(0),
Mid(0),
LowMid(0),
HighMid(0),
HODColor(green),
LODColor(red),
MidColor(green),
LowMidColor(green),
HighMidColor(green);

HOD = highD(0);
LOD = lowD(0);
Mid = (HOD+LOD)/2;
LowMid = (LOD+Mid)/2;
HighMid = (HOD+Mid)/2;

if close < Mid then begin 
MidColor = red;
end
else begin
MidColor = green;
end;

if close < LowMid then begin 
LowMidColor = red;
end
else begin
LowMidColor = green;
end;

if close < HighMid then begin 
HighMidColor = red;
end
else begin
HighMidColor = green;
end;

Plot1(HOD, "High of Day", HODColor);
Plot2(LOD, "Low of Day", LODColor);
Plot3(Mid, "MidPoint", MidColor);
Plot4(LowMid, "LowMidPoint", LowMidColor);
Plot5(HighMid, "HighMidPoint", HighMidColor);
[/color]
 
Status
Not open for further replies.
Back
Top