500 SMA in Amibroker

#1
hello friends,
I am very new to this amibroker trading software.
I am trying to find 500 period SIMPLE MOVING AVERAGES in this software ,but it can give maximum upto 300 period SMA.
So can anybody help me in getting a afl programme for 500 period SMA.
I will be very thankful to you if u help me out.

Regards,
Vitthal.M.S.
 
#2
hello friends,
I am very new to this amibroker trading software.
I am trying to find 500 period SIMPLE MOVING AVERAGES in this software ,but it can give maximum upto 300 period SMA.
So can anybody help me in getting a afl programme for 500 period SMA.
I will be very thankful to you if u help me out.

Regards,
Vitthal.M.S.
You need more that 500 days of data on your price chart before you can plot a 500 period SMA

If you do not have 500 days of data, try plotting a 500 day EMA
 
#3
hello friends,
I am very new to this amibroker trading software.
I am trying to find 500 period SIMPLE MOVING AVERAGES in this software ,but it can give maximum upto 300 period SMA.
So can anybody help me in getting a afl programme for 500 period SMA.
I will be very thankful to you if u help me out.

Regards,
Vitthal.M.S.
First of all, you need to have more than 500 periods of data to see 500 period SMA.
If this condition is fulfilled, then create a new formula and type :

Period = param("Period", 500, 1, 1000, 10);
Plot(SMA(Period), "SMA", colorRed);

Drag and drop this Formula into your chart!!
You can also change the period by right-clicking on the chart and choosing parameter!!

----TIZ--------