Hi can we serve you old -- in new bottle?PTU TREND JUMPER

#1
HI TRADERS

Here is a new system called PTU TREND JUMPER.
THIS IS A RAW FORM.

HTML:
SetChartBkColor(64);//PTU TRENDJUMPER-NET PI KS
EMA30=EMA(C,30);//YELLOW overall trend bias
EMA4 =EMA(C,4);//WHITE LINE confirmation
EMA13 =EMA(C,13);//RED JUMP LINE
EMA15 =EMA(C,15); //BLUE TRAILING IND

Plot(C,"C",COLORCYCLE,styleCandle);
Plot(EMA30,"EMA30",colorYellow,styleThick);
Plot(EMA4,"EMA4 WHITE",colorWhite,styleThick);
Plot(EMA13,"EMA13 RED JUMPLINE",colorRed,styleDots);
Plot(EMA15,"E15 BLUE TRAILING IND",colorBlue,styleThick);

chart here


If somebody has original mt4 code,he can perfect it.
cheers
ford
 

kiran_thiru

Well-Known Member
#2
HI TRADERS

Here is a new system called PTU TREND JUMPER.
THIS IS A RAW FORM.

HTML:
SetChartBkColor(64);//PTU TRENDJUMPER-NET PI KS
EMA30=EMA(C,30);//YELLOW overall trend bias
EMA4 =EMA(C,4);//WHITE LINE confirmation
EMA13 =EMA(C,13);//RED JUMP LINE
EMA15 =EMA(C,15); //BLUE TRAILING IND

Plot(C,"C",COLORCYCLE,styleCandle);
Plot(EMA30,"EMA30",colorYellow,styleThick);
Plot(EMA4,"EMA4 WHITE",colorWhite,styleThick);
Plot(EMA13,"EMA13 RED JUMPLINE",colorRed,styleDots);
Plot(EMA15,"E15 BLUE TRAILING IND",colorBlue,styleThick);

chart here


If somebody has original mt4 code,he can perfect it.
cheers
ford
good format. but there is no big difference between red and blue line(ema 13 & 15). so why the second line. what stands for yellow line (ema 30). is it for trend direction?
 

KelvinHand

Well-Known Member
#3
HI TRADERS

Here is a new system called PTU TREND JUMPER.
THIS IS A RAW FORM.

HTML:
SetChartBkColor(64);//PTU TRENDJUMPER-NET PI KS
EMA30=EMA(C,30);//YELLOW overall trend bias
EMA4 =EMA(C,4);//WHITE LINE confirmation
EMA13 =EMA(C,13);//RED JUMP LINE
EMA15 =EMA(C,15); //BLUE TRAILING IND

Plot(C,"C",COLORCYCLE,styleCandle);
Plot(EMA30,"EMA30",colorYellow,styleThick);
Plot(EMA4,"EMA4 WHITE",colorWhite,styleThick);
Plot(EMA13,"EMA13 RED JUMPLINE",colorRed,styleDots);
Plot(EMA15,"E15 BLUE TRAILING IND",colorBlue,styleThick);

chart here


If somebody has original mt4 code,he can perfect it.
cheers
ford
Here you are:
- Free MT4 indicators
- Free Training
http://www.premiertraderuniversity.com/system/downloadnow.html


Free Indicators for Amibroker exact same in the video:
1. Confirmation Dotted Line (White) ====> Tenkan-sen: 4
2. JUMP Solid Line (Red) =========> Kijun-sen: 9
3. TRAILING Solid Line (Blue) ========> Kelvinhand-sen: 10


All sen := (HHV(H, Len)+LLV(L, Len))/2;
 
Last edited:
#4
Hi KelvinHand

Thank you for the hints.
Of all these,I like KelvinHandsen .
becoz it controls risk.

I think the code is ichimoku.
I will find it.
regards
ford
//========================================
SetChartBkColor(64);
Plot(C,"c",Colorcycle,styleCandle);
Confwhite4= (HHV(H, 4)+LLV(L, 4))/2;
Jumpred9 = (HHV(H, 9)+LLV(L, 9))/2;
TrailBlue10 = (HHV(H, 10)+LLV(L, 10))/2;

Plot(Confwhite4," conf line",colorWhite,styleDots);
Plot(Jumpred9," Jump Red line",colorRed,styleThick);

Plot(TrailBlue10," Trail Blue ",colorBlue,styleThick);
//======================================================
 
Last edited:

KelvinHand

Well-Known Member
#5
Hi KelvinHand

Thank you for the hints.
Of all these,I like KelvinHandsen .
becoz it controls risk.

I think the code is ichimoku.
I will find it.
regards
ford
//========================================
SetChartBkColor(64);
Plot(C,"c",Colorcycle,styleCandle);
Confwhite4= (HHV(H, 4)+LLV(L, 4))/2;
Jumpred9 = (HHV(H, 9)+LLV(L, 9))/2;
TrailBlue10 = (HHV(H, 10)+LLV(L, 10))/2;

Plot(Confwhite4," conf line",colorWhite,styleDots);
Plot(Jumpred9," Jump Red line",colorRed,styleThick);

Plot(TrailBlue10," Trail Blue ",colorBlue,styleThick);
//======================================================
What you think replace the ema30 to ichimoku cloud to close match to ema30?
Say 4,10,15. Since 9 & 10 is so near, ignore 9.
 
Last edited:

Similar threads