EMAstrips in BB (modified)

Modified version is better ?

  • YES

    Votes: 11 78.6%
  • NO

    Votes: 3 21.4%

  • Total voters
    14
#11
The Modified version certainly helps a lot to take decisions faster .

Regards.

PS: If I will be able to do then surely I will try to have an AFL for these settings and then will surely post here .
 
#12
Great.. Will you explain how to setup this for Amibroker.


Here is the Code For Amibroker

Code:
_SECTION_BEGIN("Price");
SetChartOptions(0,chartShowArrows|chartShowDates);
_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) ", O, H, L, C ));
Plot( C, "Close", ParamColor("Color", colorDefault ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() ); 
_SECTION_END();


Plot(BBandTop( Close, 20, 2 ) ,"BBandTop",colorGreen,styleLine=1);
Plot(BBandBot( Close, 20, 2 ) ,"BBandBottom",colorRed,styleLine=1);

Plot(EMA( Close, 2 ) ,"EMA1",colorWhite,styleLine=4);
Plot(EMA( Close, 9 ) ,"EMA2",colorWhite,styleLine=4);



Plot(EMA( Close, 3 ) ,"EMA3",IIf(EMA( C, 3 ) > Ref(EMA( C,3 ),-1),colorBlue ,colorRed),styleLine=styleNoLabel+1);
Plot(EMA( Close, 4 ) ,"EMA4",IIf(EMA( C, 4 ) > Ref(EMA( C,4 ),-1),colorBlue ,colorRed),styleLine=styleNoLabel+1);
Plot(EMA( Close, 5 ) ,"EMA5",IIf(EMA( C, 5 ) > Ref(EMA( C,5 ),-1),colorBlue ,colorRed),styleLine=styleNoLabel+1);
Plot(EMA( Close, 6 ) ,"EMA6",IIf(EMA( C, 6 ) > Ref(EMA( C,6 ),-1),colorBlue ,colorRed),styleLine=styleNoLabel+1);
Plot(EMA( Close, 7 ) ,"EMA7",IIf(EMA( C, 7 ) > Ref(EMA( C,7 ),-1),colorBlue ,colorRed),styleLine=styleNoLabel+1);
Plot(EMA( Close, 8 ) ,"EMA8",IIf(EMA( C, 8 ) > Ref(EMA( C,8 ),-1),colorBlue ,colorRed),styleLine=styleNoLabel+1);
 

guptak03

Well-Known Member
#15
hello columbus sir,
i didnt understand the statement below !!!!

Better prefer one of these conditions ,preferably the condition-1

you mean only buying no short's !!!or only shorts no buying !! cant we use both conditions in this!!!

and if you show some trades according to it,it will be very help full for us:thumb:....


i know success is always hidden in simple thing's so lil curious about this :)
 

columbus

Well-Known Member
#16
hello columbus ,
i didnt understand the statement below !!!!

Better prefer one of these conditions ,preferably the condition-1

you mean only buying no short's !!!or only shorts no buying !! cant we use both conditions in this!!!

and if you show some trades according to it,it will be very help full for us.


i know success is always hidden in simple thing's so lil curious about this :)
Hello guptak03,

Though the post was intended to both Beginners and Pro alike and for those
using the strategy for the first time ,I was throwing a CAUTION to use
condition.1.Once it was perfected ,automatically they will start using the other
condition also.For beginners ,I advise the condition.1.For PROs I have
nothing to advise.

Your YOUTUBE videos are good,as one of it says ENJOY THE JOY OF GIVING.
 

guptak03

Well-Known Member
#18
hello columbus sir as you are good in Trade Tiger plz help me to how to plot this in TT..


MA7 = MA(C,7);
MA20 = MA(C,20);
ClosePercentage = (3*C/100);
UpperBand = MA20 + ClosePercentage ;
LowerBand = MA20 - ClosePercentage ;



This band...
 

columbus

Well-Known Member
#19
Intraday chart is missing ,today ..
Hi Nazimshda,

I am not carrying it ,regularly.I am putting it on WEEKLY basis in Bollinger Band
thread.(Bolliger Band+EMA strips in BB) in one chart.
 

columbus

Well-Known Member
#20
hello columbus sir as you are good in Trade Tiger plz help me to how to plot this in TT..


MA7 = MA(C,7);
MA20 = MA(C,20);
ClosePercentage = (3*C/100);
UpperBand = MA20 + ClosePercentage ;
LowerBand = MA20 - ClosePercentage ;



This band...
Hello gupta03,
We can plot the things ,as given by Sharekhan.
Any USER DEFINED formula can be better plotted in AMIBROKER ,I suppose.
 
Thread starter Similar threads Forum Replies Date
R Day Trading 46

Similar threads