Skip to main content

Guppy Ultimate for Amibroker (AFL)

cnbondre almost 16 years ago Amibroker (AFL)

  • Rating:
    3 / 5 (Votes 34)
  • Tags:
    trading system, amibroker, exploration, moving average

Here is one more for GUPPY lovers with Buy/Sell indicators, by
LINKON on Traderji.com

Check the Time frame for Trading.

Screenshots

You cannot view the code for the following reasons:
  • You must be a member and have contributed at least 1 indicator

34 comments

almost 16 years ago

Hello Administrator,

Does this look into future quotes or this is just one of the few formulas that gives an output based on prevoius quotes

Warm regards
Siddhisagar

almost 16 years ago

Hello

No it doesn’t look like it references future quotes. It should be fine. But use the bar replay feature to be sure yourself.

7. mmsm44
over 15 years ago

thankssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss)

8. mmsm44
over 15 years ago

thankssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss)

about 15 years ago

i cant download it. it shows u have to contribute 1 indicater. i have already contribute 1.

18. sudip02
almost 15 years ago

can any one please send me the code kindly?

E:mail: removed

24. anil1234
over 14 years ago

sorry can anybody tell how can take formula like guppy ultmate it always say that u mut ne a member or donate one formula plz help hv donated but it not show
if someone hv plz mail me
rohan.fzk@gmal.com

about 14 years ago

Why does this formula have two different
Buy and Sell?

Buy = Buy_rsi  AND Buy_guppy; //AND Buy_stochk;
Sell = sell_rsi AND sell_guppy; //AND SELL_stochk;

and

Buy=Cross(C,tsl);
Sell=Cross(tsl,C);

and the Filter is on a 3rd  buy
X=Cross( C,LL);
Y=Cross(UL,C);

Buy1= X ;
Sell1= Y ;
Filter=Buy1 OR Sell1 ;

Thanks.

about 14 years ago

If I comment out these two lines, this system looses money

SellPrice=ValueWhen(Sell_guppy,C);
BuyPrice=ValueWhen(Buy_guppy,C);

It is setting Sell&Buy Price on 1 signal but trading on another.

This code will come down to

e3 = EMA(Close,3); 
e60 = EMA(Close,60);
Buy_guppy = e3>e60;
Sell_guppy = e60 > e3;
Buy_guppy = ExRem (Buy_guppy,Sell_guppy);
Sell_guppy = ExRem(Sell_guppy,Buy_guppy);

///////////////////////////////////////
SellPrice=ValueWhen(Sell_guppy,C);
BuyPrice=ValueWhen(Buy_guppy,C);

////////////////////////
no=Param( "Swing", 2, 1, 55 );
tsl_col=ParamColor( "Color", colorCycle );

res=HHV(H,no);
sup=LLV(L,no);
avd=IIf(C>Ref(res,-1),1,IIf(C<Ref(sup,-1),-1,0));
avn=ValueWhen(avd!=0,avd,1);
tsl=IIf(avn==1,sup,res);

Plot(tsl, _DEFAULT_NAME(), tsl_col, styleStaircase);

Buy=Cross(C,tsl);
Sell=Cross(tsl,C);
Comment hidden — Show

Leave Comment

Please login here to leave a comment.