| / | Forum |
|
flourishing
2008.11.10 05:07
for example. i use a indicator ma
i want get ima(.......,shift =1000) almost i can't get that,that will make a error, then ea can't keep working. how to make sure i can get that data ? thank you. |
|
Betting Modeling as Means of Developing "Market Intuition" The article dwells on the notion of "market intuition" and ways of developing it. The method described in the article is based on the modeling of financial betting in the form of a simple game. |
|
phy
2008.11.10 22:07
If you just want to know if you have enough data... int start(){ if(Bars < 1000){ Alert("Need 1000 bars, only have", Bars); return(0); } ... ... ... return(0); |