EasyLanguage Treasure Chest

Discussion in 'Trading Software' started by Tums, Nov 24, 2008.

Thread Status:
Not open for further replies.
  1. JM64

    JM64

    I did do that and got a syntax error that said "word too long"
     
    #21     Nov 26, 2008
  2. 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.
     
    #22     Nov 26, 2008
  3. Tums

    Tums

    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
     
    • renko.txt
      File size:
      962 bytes
      Views:
      1,464
    #23     Nov 27, 2008
  4. Tums

    Tums

    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:
     
    #24     Nov 27, 2008
  5. Tums

    Tums

    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
     
    #25     Nov 28, 2008
  6. veggen

    veggen

    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.
     
    #26     Nov 28, 2008
  7. veggen

    veggen

    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.
     
    #27     Nov 28, 2008
  8. Tums

    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.
     
    #28     Nov 28, 2008
  9. veggen

    veggen

    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
     
    #29     Nov 28, 2008
  10. veggen

    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]
    
     
    #30     Nov 28, 2008
Thread Status:
Not open for further replies.