PureBytes Links
Trading Reference Links
|
Hello,
Both codes work OK for me using 4.37.0 - no errors , no freezing.
Best regards,
Tomasz Janeczko
amibroker.com
----- Original Message -----
From: "jnk1997" <jnk1997@xxxxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Sunday, May 18, 2003 5:09 PM
Subject: [amibroker] TJ; RE: AB 4.37 Release Bug
> First, Thomasz, I want to thank you for including enhanced chart
> printing with your latest beta. It is much appreciated.
>
> Although this is not critical for me (I don't use these indicators in
> my current trading system, just had them on my charts for future
> investigation) I thought you should know that these two indicators
> have ceased to function with the latest beta (show errors and freeze
> AB.
>
> Thanks again,
> Jim
>
> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>
> /*ErgCSI Ergodic Candlestick Oscillator(ECO) or CSI* by Stephan
> bondorowicz*/
>
> value1 =100 * DEMA(Close-Open,26);
> value2=DEMA(High-Low,26);
> ErgCSI = IIf( value2 != 0, value1/value2,0);
>
> sigLine = EMA(ErgCSI,5);
>
> Plot(ErgCSI,"ErgCSI",colorBlue,styleLine);
> Plot(sigLine,"sig",colorRed,styleLine);
> Plot(0,"",colorYellow,styleDots);
>
>
> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>
> /* Asymetrical Market Profile Band System v1*/
>
> /* Author Marc Valley */
>
>
> per1 = 256; //Optimize("Per1",1,1,20,1);
>
> per2 = Optimize("Per2",14,1,20,1);
>
> HistVol= 100*sqrt(260 )*StDev((Close-Ref(Close,-1))/Close,per1 );
>
> Ga = DEMA(HistVol,per1 );
>
> G1 = DEMA(RSI(per2 ),per2 );
>
> G2= (((G1 *Avg)* MA(V,per1))*Ga);
>
> G0 = BBandTop(G2, 11, 1.00);
>
> G3 = BBandBot(G2, 11, .95);
>
> G4 = ValueWhen(LLV(G2,2), G2, 1);
>
> HistVol= 100*sqrt(260)*StDev((Close-Ref(Close,-1))/Close,256);
>
> Ga = DEMA(HistVol,256);
>
> G1 = DEMA(DEMA(RSI(14),14),14);
>
> G2= (((G1 *Avg)* MA(V,256))*Ga);
>
> G0 = BBandTop(G2, 11, 1.00);
>
> G3 = BBandBot(G2, 11, .95);
>
> G4 = ValueWhen(LLV(G2,2), G2, 1);
>
>
> /********************/
>
> /* A theoretical trading system for RSI(14)*/
>
> /*(it is not proper for real trading)*/
>
> //perc=3;//calibrate the sensitivity
>
> //Var= G2; //RSI(14);//Your variable input
>
> //C1=PeakBars(Var,perc)==0;//peak condition
>
> //C2=TroughBars(Var,perc)==0;//trough condition
>
> /*Filter=C1 OR C2;//To find peak or trough dates
>
> AddColumn(IIf(C1,Var,0),"PEAK",1.2);//To read peak values
>
> AddColumn(IIf(C2,Var,0),"TROUGH",1.2);//To read trough
> values
>
> Buy=C2;//Buy at trough
>
> Sell=C1;//Sell at peak
>
> Buy=ExRem(Buy,Sell);Sell=ExRem(Sell,Buy);
>
> Short=Sell;//A first approach short condition
>
> Cover=Buy;//A first approach cover condition
>
> Short=ExRem(Short,Cover);Cover=ExRem(Cover,Short); */
>
>
>
>
>
>
>
> Send BUG REPORTS to bugs@xxxxxxxxxxxxx
> Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
> -----------------------------------------
> Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
> (Web page: http://groups.yahoo.com/group/amiquote/messages/)
> --------------------------------------------
> Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>
>
>
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Get A Free Psychic Reading! Your Online Answer To Life's Important Questions.
http://us.click.yahoo.com/Lj3uPC/Me7FAA/uetFAA/GHeqlB/TM
---------------------------------------------------------------------~->
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|