-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
EMA option #436
Comments
Hi, |
Hi, Thanks for taking time answering me. I used to do some expert advisor using metatrader some years ago. I had good result drawing EMA (exponential )or SMA (simple moving average ) of the Low or High of the prices. i use it for example like this : ((Close[0]<EMA_Low && Close[1]>EMA_Low)) then i send Sell order. Where Close[0] is the actual Close, and Close[1] is the Close before this one. |
I'm not sure if I can help you, but I have one more question. |
It would be awesome if we can add it on the ma_crossover section, and do something like this :
But, maybe it will be even more powerfull if we can have the ema, or sma of whatever we want : price_low, price_open, price_close, or price_high Don't hesitate if you have other question. my goal with this is to filter signal and make sell order only when price is under one sma of the LOWs, and buy order only when price is upper the sma of the HIGHs. |
Hi,
I follow the Wiki to setup my EMAs. I see there is this parameter : candle_period: 1d
witch is good, but i'd like to know if it is possible to have the ema of the Highs, or the ema of the Lows as an option, instead of the EMA of the candle that seems to be the EMA of the Close of that candle.
Thanks by advance.
The text was updated successfully, but these errors were encountered: