如果免费资源下载的文件为TXT文档 请联系站长更新!站长微信:Lv596999 Telegram:@eapoj 站长因大部分时间研究EA,做风控,没太多时间更新下载地址,请谅解! |
Version History
| Date | Version | Changes |
|---|---|---|
| 07/09/2022 | 1.10 | Initial released |
Description
The redeecash RSI is your typical RSI indicator with the three latest RSI calculations exposed as global variables for easier integration with scripts and expert advisors.
Code Sample
To invoke this indicator from an EA or script, call the iCustom metatrader function,
iCustom(Symbol(),PERIOD_CURRENT,"Market/RedeeCash RSI",14,1,0); string RSIVarName = StringConcatenate(Symbol(),"_rsi"); string RSIPosVarName = StringConcatenate(Symbol(),"_rsipos"); string RSINegVarName = StringConcatenate(Symbol(),"_rsineg"); double rsi = GlobalVeriableGet(RSIVarName); bool trade_ready = false; if (rs < 70 && rsi > 30) { trade_ready = true; }
Usage
Invoke the RedeeCash RSI indicator from your script or expert advisor using th iCustom function passing a single parameter for RSI Period.
![]()
,
![]()
,
![]()
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END