- Katılım
- 23 Eki 2020
- Mesajlar
- 1,828
The Input() Function(MSK-man. p.271-273) cannot be used directly in the Explorer(MSK-man. p.351). It is reserved to be used in a custom indicator. However,the custom indicator's default value can be used in an exploration. Since you have created a {faulty} custom indicator, than just re-code it. By referencing the Input() Function using the fml() CALL Function (MSK-man.p.226-227 and 208-209 and 212), you can still use its {by you at design time} assigned Default value. |
|
MACD Custom MAprd:=Input( "Periods", 5 {Minimum}, 30 {Maximum}, 14 {Default} ); YourTrig:=Mov( MACD(), MAprd, E ); MACD(); YourTrig; 0 |
|