OEC Indicators Treasure Chest

Here you go.

2jd2fdw.png


Just import file to My Docs-Custom Indicators-Imported

Restart OEC.
 

Attachments

If anyone's interested/willing/able, a similar request for OEC Trader --- how about the Fisher Transform? Not being a coder at all makes developing stuff even more challenging, and when I look @ Easylanguage all I see is Greek.

Thanks in advance for any help!

*puppydog eyes*
 
Here's what I think is the EL code.

Source via Google Cache and some add'l background on the indicator:

http://tinyurl.com/6dcay3

Code:
[color=blue]
Inputs: Price((H+L)/2),

            Len(10); 

Vars: MaxH(0),

      MinL(0),

      Fish(0); 

MaxH = Highest(Price, Len);

MinL = Lowest(Price, Len); 

Value1 = .33*2*((Price - MinL)/(MaxH - MinL) - .5) + .67*Value1[1];

If Value1 > .99 then Value1 = .999;

If Value1 < -.99 then Value1 = -.999; 

Fish = .5*Log((1 + Value1)/(1 - Value1)) + .5*Fish[1]; 

Plot1(Fish, "Fisher");

Plot2(Fish[1], "Trigger");
[/color]
 
Here ya go:
2e4kol1.png

Make sure to select "Create in new area"

I dont know if anyone really knows this, but in OEC its really easy to use EL. Just go to Plug ins- Show Library - Right Click - New Easy language indicator. Then copy and paste whatever code you want and then compile.
 

Attachments

Thanks much!

I tried that, importing an Easylanguage thing, and I got errors galore when it went to compile. After the 3rd or 4th attempt, I gave up and posted here.

I wish OEC would allow an ELD import - gods know there are tons of stuff (indicators and strategies) precompiled already, especially for us non-programmers.

Thanks again very much for this. I sincerely appreciate your help!
 
Quote from Trader273:

Here you go.

2jd2fdw.png


Just import file to My Docs-Custom Indicators-Imported

Restart OEC.

Doesn't look smooth enough to be Hull.

Here it is on OEC compared with on Sierra.

Same value, same calculation based on close of bar.
 

Attachments

Back
Top