A Moving Average Trading System

the sma39 is starting only after 2 o clcok for intraday. i used icharts.in 5 min real time chart. if we want to long a position by 10-10.30 how can we judge the trend ?
 
the sma39 is starting only after 2 o clcok for intraday. i used icharts.in 5 min real time chart. if we want to long a position by 10-10.30 how can we judge the trend ?

If u have intraday historical data then this should not be a problem. but on icharts it must be only showing todays intraday data.....

when u say long position then u mean only for intraday trading or for longer period. cause if its for longer period then u would also anaylse daily charts and use intraday chart only to get a good entry point.

Rahul
 
If u have intraday historical data then this should not be a problem. but on icharts it must be only showing todays intraday data.....
Historical intraday charts are available on iCharts.in, both in "Charts Beta" & "Live Charts". There is a dropdown list where you can select the number of days to chart.

--SwingTrader
 
Try this.
ma3:= mov(c,3,s);
ma13:= mov(c,13,s);
ma39:= mov(c,39,s);
{When the 39 MA is moving up buy when the 3 MA crosses up over the 13 MA. and/or when the 3 MA crosses above the 39 MA. When the 13 MA crosses above the 39 MA consider adding to your long position. Exit and stand aside when the 3 crosses back below the 13 MA.}
LE:= ma39>Ref(ma39,-1) and (cross(ma3,ma13) or cross(ma3,ma39));
LX:= cross(ma13,ma3);
{When the 39 MA is moving down sell short when the 3 MA crosses below the 13 MA. and/or when the 3 MA crosses below the 39 MA. When the 13 MA crosses below the 39 MA consider adding to your short position. Exit and stand aside when the 3 MA crosses back up over the 13 MA. }
SE:= ma39<Ref(ma39,-1) and (cross(ma13,ma3) or cross(ma39,ma3));
SX:= cross(ma3,ma13)

to be completed or modified according to whether above used in indicator, expert or system tester.

minnamor
 
Try this.
ma3:= mov(c,3,s);
ma13:= mov(c,13,s);
ma39:= mov(c,39,s);
{When the 39 MA is moving up buy when the 3 MA crosses up over the 13 MA. and/or when the 3 MA crosses above the 39 MA. When the 13 MA crosses above the 39 MA consider adding to your long position. Exit and stand aside when the 3 crosses back below the 13 MA.}
LE:= ma39>Ref(ma39,-1) and (cross(ma3,ma13) or cross(ma3,ma39));
LX:= cross(ma13,ma3);
{When the 39 MA is moving down sell short when the 3 MA crosses below the 13 MA. and/or when the 3 MA crosses below the 39 MA. When the 13 MA crosses below the 39 MA consider adding to your short position. Exit and stand aside when the 3 MA crosses back up over the 13 MA. }
SE:= ma39<Ref(ma39,-1) and (cross(ma13,ma3) or cross(ma39,ma3));
SX:= cross(ma3,ma13)

to be completed or modified according to whether above used in indicator, expert or system tester.

minnamor
Hello Minnamore,
I am extremely sorry for acknowledging your reply to my post, as I was out of station. Thanks for your feed back. I will enter your formula and revert the results
sharantaka
 
I want to address a question commonly asked by investors and traders new to technical analysis and trading systems, "What is a good simple system to follow, to get in and out of markets?".

Most people are comfortable with the herd, market rumours, broker tips, etc. But by confirming your trading decision with the help of this trading system, you will be on the way to more profitable trading.

This simple and robust trading systems will not only identify trends, but will also provide you with entry and exit trading signals.

The Trading System

Remember the numbers 3 x 13 = 39

Simple daily moving averages of 3,13 and 39 can keep you in and out of markets fairly efficiently and profitably, (in any time frame actually). Here's how.

Some basic principles to understand are:

-The market moves in long (secular) trends.
-Intermediate trends can last for months to years.
-Short term trends can last for days to weeks.
-Trade intermediate trends in either direction.
-Trade short term trends only in the direction of the intermediate trend.

Proxies:

3 Day MA - a proxy for price
13 Day MA - a proxy for the short term trend (a moving trend line)
39 Day MA - a proxy for the intermediate trend (a moving trend line).

The Basics of MAs

MAs lag market reversals at tops and bottoms, the larger the MA the longer the lag period, the shorter the MA the shorter the lag but the more frequent the whipsaws. MAs work well when markets trend but get frequently whipsawed when they are in a range.

Therefore, trade trends with the MAs but do not trade ranges using MAs. Just stand aside and be patient until a new trend emerges.

The intermediate trend is in the direction of the 39 MA which acts like a moving trend line. If the 39 MA is pointing up then the intermediate trend is up, if down the trend is down. If the 39 MA is horizontal the market is in a range, from which a trend will, sooner or later, emerge.

Simple Trading Rules

1. When the 39 MA is moving up buy when the 3 MA crosses up over the 13 MA. and/or when the 3 MA crosses above the 39 MA.. When the 13 MA crosses above the 39 MA consider adding to your long position. Exit and stand aside when the 3 crosses back below the 13 MA..

2. When the 39 MA is moving down sell short when the 3 MA crosses below the 13 MA. and/or when the 3 MA crosses below the 39 MA.. When the 13 MA crosses below the 39 MA consider adding to your short position. Exit and stand aside when the 3 MA crosses back up over the 13 MA.

3. Only initiate trades in the opposite direction of the intermediate trend when the 3 MA crosses above or below the 39 MA, preferably after the 39 MA has already changed direction.

4. This 3:13 MA crossover will keep you trading in the trend with only a small lag and on the sidelines during corrections. The lag only becomes more substantial at reversals of the intermediate trend (a 3:39 crossover), a small price to pay at these uncertain times of trend transition.

You can set your technical analysis sofware to show bar charts with these 3X13x39 simple MAs. This trading system will help you select the best traders while avoiding the less profitable trades in choppy markets.
Superb And Yet Simple

I have to say, it's the simplest one I have seen.

I do not wish to criticize your system, yet I would say Moving Averages "LAG" the market by a particular amount. So we need a time factor in order to win the game.

I think one should set stoploss or trailing stoploss in number of bars from one of your three numbers.

Hope you could throw some light on this.

Regards

Max
 
wow !! 3 x 13 = 39

excellent formula.:)

could you please tell me the intraday settings Sir ?
i have read all the posts in this thread and tried to implement the formula in
5 mins and 10 mins chart. but, the 10 mins chart does not show the 39 moving average.
the 3 mins and 1 mins chart shows early signals but produces whipsaws.
pls see the attached pics for Moserbaer 18/05/2007

Waiting for your reply.
thank You.
 

Attachments