My System - My trades.

Coming back to my promised method to trade always. In the chart that i have posted there are 2 more lines (the 36EMA of 5min.TF in light blue colour) and the 36EMA of 15min.TF in yellow colour. (the 36EMA of 15 min roughly corresponds to the 200EMA of 5min TF (5*36 = 180)). Now you can easily trade both 1min and 5min. TF using the same charts by the method advocated earlier. Simple. That is all there is to it. Now mark the trades in Dr.Reddy's charts of 1min and 5min including adds and post. I will catch you guys later as i have some guests over. But do this positively and post so that i may know that you guys are serious about trading.
 

Tuna

Listen and act, don't ask it, it doesn't oblige
We are traders. we do not fall in love with our wares. Trading is a business. Investing is for people who cannot devote time. If you are good at trading, you would never need to invest. Do not put all your eggs in one basket. Diversify to other asset classes fom your earnings. First and foremost get adequate insurance cover for yourself. Take one premium policy always so you do not have to worry about paying premiums again. Take exposure to precious metals. Then shift to real estate,
What kindda birdy is this Sir? Sorry may be too naive question, but curious to know.
 
Before someone asks for AFL for TF 5 & TF 36

Code:
_SECTION_BEGIN("EMA 5 MIN");
TimeFrameSet(in5Minute);
m5= EMA(Close,36) ;
Plot(TimeFrameExpand(m5, in5Minute), "", ParamColor( "5 Min Color", colorAqua ), ParamStyle("Style", styleDashed));
TimeFrameRestore();
_SECTION_END();

_SECTION_BEGIN("EMA 15 MIN");
TimeFrameSet(in15Minute);
m15= EMA(Close,36) ;
Plot(TimeFrameExpand(m15, in15Minute), "", ParamColor( "15 Min Color", colorYellow ), ParamStyle("Style", styleDashed));
TimeFrameRestore();
_SECTION_END();
 
Before someone asks for AFL for TF 5 & TF 36

Code:
_SECTION_BEGIN("EMA 5 MIN");
TimeFrameSet(in5Minute);
m5= EMA(Close,36) ;
Plot(TimeFrameExpand(m5, in5Minute), "", ParamColor( "5 Min Color", colorAqua ), ParamStyle("Style", styleDashed));
TimeFrameRestore();
_SECTION_END();

_SECTION_BEGIN("EMA 15 MIN");
TimeFrameSet(in15Minute);
m15= EMA(Close,36) ;
Plot(TimeFrameExpand(m15, in15Minute), "", ParamColor( "15 Min Color", colorYellow ), ParamStyle("Style", styleDashed));
TimeFrameRestore();
_SECTION_END();
Was just going to ask

Sent from my SM-G930F using Tapatalk
 
Before someone asks for AFL for TF 5 & TF 36

Code:
_SECTION_BEGIN("EMA 5 MIN");
TimeFrameSet(in5Minute);
m5= EMA(Close,36) ;
Plot(TimeFrameExpand(m5, in5Minute), "", ParamColor( "5 Min Color", colorAqua ), ParamStyle("Style", styleDashed));
TimeFrameRestore();
_SECTION_END();

_SECTION_BEGIN("EMA 15 MIN");
TimeFrameSet(in15Minute);
m15= EMA(Close,36) ;
Plot(TimeFrameExpand(m15, in15Minute), "", ParamColor( "15 Min Color", colorYellow ), ParamStyle("Style", styleDashed));
TimeFrameRestore();
_SECTION_END();
Thanks a lot MB Bro
you have solved the problem before arising:happy:
Thanks
 

Similar threads