[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: formulas



PureBytes Links

Trading Reference Links

       
At 10:33 PM 8/9/98 -0400, you wrote:
>
>Can you post the ELA file for use by Supercharts?
>
>- Hacker
__________________________________________________________________________--
       
Sorry, don't know anything about EL restrictions in SC - maybe someone else
can translate--
           
Input:	ADX_Len(14);
Vars: DPlus(0), DMinus(0), AADX(0), STOk(0);
         
DPlus = DMIPlus(ADX_Len); DMinus = DMIMinus(ADX_Len); AADX = ADX(ADX_Len);
STOk=FastK(8);
          
If Volume > 50000 and AADX >= 35 and High >= 25 and DPlus > DMinus and STOk
< 21 then Begin
    Plot1(Low,"Buy");      
    FileAppend("C:\SIGNALS\5Day_sig", NumToStr(Date,0) + "  " +
LeftStr(GetSymbolName + "           ",5) + "Long " + "  ADX= " +
NumToStr(AADX,2) + "  Close= " + NumToStr(Close,2) +"  Entry=     " +
NumToStr(High + .0625,2)  +"  Stop= "  +  NumToStr(Low - .0625,2) + Newline) ; 
End;
          
If  Volume > 50000 and AADX >= 35 and High >= 25 and DPlus < DMinus and STOk
> 79 then Begin
    Plot2(High,"Sell");      
    FileAppend("C:\SIGNALS\5Day_sig", NumToStr(Date,0) + "  " +
LeftStr(GetSymbolName + "           ",5) + "Short" + "  ADX= " +
NumToStr(AADX,2) + "  Close= " + NumToStr(Close,2) +" Entry= "     +
NumToStr(Low - .0625,2) + "  Stop= " +  NumToStr(High + .0625,2) + Newline) ; 
End;
____________________