Pivot Trading- a new way of Trading

princy01

Well-Known Member
Joined
May 22, 2015
Messages
1,032
Likes
738
Heikin-Ashi + EMA8 + SMA21
Code:
_SECTION_BEGIN("Heikin-Ashi");
SetChartOptions(0,chartShowArrows | chartShowDates);
HaClose = (O + H + L + C)/4; 
HaOpen = AMA( Ref( HaClose, -1 ), 0.5 ); 
HaHigh = Max( H, Max( HaClose, HaOpen ) ); 
HaLow = Min( L, Min( HaClose, HaOpen ) ); 
//xDiff = (HaHigh - Halow) * 10000;
barcolor = IIf(HaClose >= HaOpen,colorGreen,colorRed);
PlotOHLC( HaOpen, HaHigh, HaLow, HaClose, "", barcolor, styleCandle );
_SECTION_END();

_SECTION_BEGIN("MA");
P = ParamField("Price field",-1);
Periods = Param("Periods", 15, 2, 300, 1, 10 );
Plot( MA( P, Periods ), _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style") ); 
_SECTION_END();

_SECTION_BEGIN("EMA");
P = ParamField("Price field",-1);
Periods = Param("Periods", 15, 2, 300, 1, 10 );
Plot( EMA( P, Periods ), _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style") ); 
_SECTION_END();
HA taken from here
Did it work good?
 

Subhadip

Well-Known Member
Joined
Apr 2, 2010
Messages
3,514
Likes
8,982
Location
in-ter-net
link to method please

Link!!

Not shared...any where..

let me first fine tune it..

It is mixture of all methods..but Keeping it very simple..

It is also utilising Option selling..so very much capital intensive..

Potential..monthly 20% of capital...
 

lemondew

Well-Known Member
Joined
Mar 28, 2014
Messages
4,150
Likes
5,751
Sirji,

Thanks again nice concepts.

Just wanted to ask when a higher timeframe downtrend meets a lower timeframe uptrend. Do you call it something else or thats a visual pivot as well?
 

Subhadip

Well-Known Member
Joined
Apr 2, 2010
Messages
3,514
Likes
8,982
Location
in-ter-net
Sirji,

Thanks again nice concepts.

Just wanted to ask when a higher timeframe downtrend meets a lower timeframe uptrend. Do you call it something else or thats a visual pivot as well?
different TF, we do not mix up
 
Joined
Mar 15, 2015
Messages
9
Likes
37
It will be really helpful if anyone has this thread in pdf or word format. Some of the earlier dropbox links are not working. If anyone has, kindly share it.
 

Similar threads

Broker Special Offers