Manually have to select every stock and apply indicators and set their values just to find that if there's a crossover or not. #14
Vaibhavv14
started this conversation in
Ideas
Replies: 1 comment
-
Thanks, Vaibhav for bringing this up. It's a great idea to keep track of all stock at EOD to apply the quote indicator logic to them which will return us a list of stock (only nifty 50). Being said that, in order to calculate the EMA for nifty stocks we will be leveraging below formula. EMA = [ CMP X e ] + [ previous EMA X (1 - e) ] where, in order to calculate the 'e' formula is. e= 2 / (n+1) where n = number of days.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Problem statement
Manually have to select every stock and apply indicators and set their values just to find that if there's a crossover or not.
Indicators used : 50 Exponential Moving average and 200 EMA
Basic strategy :
*50 EMA is average value of last 50 candles.
*200 EMA is avg of last 200 candles.
Solution:
Beta Was this translation helpful? Give feedback.
All reactions