Pivot Trading- a new way of Trading

princy01

Well-Known Member
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
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
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
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
 

Similar threads