Free intraday charting software for Cash and Future

#41
Well,
This formula is based on MMA(Mahesh Moving Average) here instead of using EMA( Expontial Moving Average ) MMA is used while calculating MACD. MMA moving average is not like EMA where only price is used in calculation, In this indicator price and volume both were used while creating moving average. To read more on this indicator please follow this link
http://www.iguidestocks.com/project/global/igs/mma1.html
This indicator can easily find out near average price on which investor are holding their stocks.
The same formula if you use using EMA the result are different.
After writing and applying this formula on various stocks and then while doing portfolio back testing I found this one really cut huge losses.
Currently what I am finding is for acc,cairn,dlf,drreddy,national aluminium
It is giving a sell signal.May be we can watch out how it goes
Thanks a lot for your reply. I have gone through the link you provided but I guess a novice like me would be need some spoon feeding. I'll appreciate if you can explain the theory provided in link with some real values, like calculating MMA for 10 days for any stock.

Let me know if I am getting too much demanding :(
 
#42
Thanks a lot for your reply. I have gone through the link you provided but I guess a novice like me would be need some spoon feeding. I'll appreciate if you can explain the theory provided in link with some real values, like calculating MMA for 10 days for any stock.

Let me know if I am getting too much demanding :(
Hi sethrohit,
Your queries are absolutely correct. The idea behind MMA is like this. Let’s say you have 2 apples which you bought from somebody from 2 Rs. Now somebody comes to you and buy 1 apple from you in 4 Rs.
So now you have one apple which you bought in 2 Rs and he has one apple which he bought from you 4 Rs.
Suppose now somebody comes and want to buy both apples. So you will be OK if he pays you anything above 2 Rs and the other guy should be OK if he pays him anything above 4 Rs. So his average buy out price will be 3 Rs or more if both are looking for a profit.
The MMA formula also works the same way.
suppose in last example if new guy bought both apple in 4 Rs then the price of apple is now 4 Rs not 2 or not 3 but if we calculate same price using Simple moving average then it comes out (2 + 3 + 4 ) / 3 which is 3, which not correct.
So the effort, which MMA does is it tries to find out correct price of apple ( in this case ) or shares .
Using that price you can see if really a stock is overbought or oversold. IF you find a major gap between MMA and stock price then it is either in overbought or oversold zone and should come near to MMA price. So volume or price drives it to make MMA either high or low or price high or low.

So all 4 factor current price, current volume, historical price and historical volume works together and create a price.
The major difference which comes between this indicator and Simple Moving Average/Exp. Moving Average is MMA never neglect any of these 4 parameters(volume,price,historical price,historical volume) but SMA or EMA just neglect them after certain period. Suppose if you are calculating SMA of 5 days and just 5 days before heavy price fluctuation happened with heavy volume, what you will see while drawing SMA till 5 days that price is having impact in creating SMA but on 6th day SMA forget about that and zero impact on SMA which is incorrect. While MMA will have impact of that price and volume no matter how many days we go till a good volume comes again.
While SMA/MMA try to keep itself near to current price and try to tell us current trend. MMA try to tell us average price of share
 
Last edited:
#44
Dear friend,
I donot find out free nifty software. Where will I find it, I donot know.
Thanks!
Dear Bhumi,

If you are looking for a basic charting software with indicators for Indian stock market or any other stock market then the basic version of iguidestocks is free but if you are looking for advance features like backtesting,scan,buy/sell strategy and intraday quote then you need to pay for it.
 

Mangafreakz

Well-Known Member
#46
@Sweta
Is there 2 separate download links for Basic version and the advanced version where i gotta pay for backtesting, etc?
 
#47
@Sweta
Is there 2 separate download links for Basic version and the advanced version where i gotta pay for backtesting, etc?
Just install IGS India software from iguidestocks . Initially you will get 15 days trial and later automatically advance feature will be deactivated but basic charting feature will stay on.
Later if you subscribed for advance feature like scan,buy/sell strategies,back testing then they will be enabled again

Just download and install it is very easy to use

Regards
Sweta
 
#48
if somebody is using iguidestocks and if they have applied the formula which I mentioned in the forum they will find that most of the short tem signal provided were quite accurate. like 3 days tcs,adanient 1 week back dlf came(signal came at 460 went upto 490 now 400 again)
any way you can watch your stocks using that formula if works great
I am posting some scan which can be very useful if you are really looking for good stock for buy and sell. You can make modification according to your requirement

Three green candle
#a:greencandle
Select symbol,open[0],close[0] from table where a[0] and a[-1] and a[-2]


Three red candle
#a:redcandle
Select symbol,open[0],close[0] from table where a[0] and a[-1] and a[-2]

Volume is double from 10days simple moving average
#a:smaany[volume[0];10;0]
Select symbol,open[0],close[0],volume[0],a[0] from table where volume[0] > a[-1]

Doji and gapup found (good buy signal if found in downtrend )
#mydoji:doji
#mygapup:gapup
Select symbol,open[0],close[0] from table where mydoji[-1] == true and mygapup[0] == true

Doji and gapdown found (good sell signal if found in uptrend)
#mydoji:doji
#mygapup:gapdown
Select symbol,open[0],close[0] from table where mydoji[-1] == true and mygapdown[0] == true

Rsi improving
Select symbol,rsi[14;0] from table where rsi[14;0] > 30 and rsi[14;-1] < rsi[14;0] and rsi[14;-2] < rsi[14;-1]
 

Similar threads