- Search Crypto Craft
- Siro replied Jun 13, 2008
url -aroon oscillator url -ultimate oscillator google is your friend.
Creating New Indicators
- Siro replied Jun 13, 2008
the problem is the usage of the iLastRegular variable. after a buy signal you set it to 1, and after a sell to -1. this way you cannot get two buy, or sell signal in a row, only buy,sell,buy,sell,etc. there are 2 options. throw the iLastRegular away ...
Sonic Indicator Project!
- Siro replied Jun 13, 2008
there are some errors in your code: try this one instead: #property indicator_chart_window #property indicator_buffers 1 #property indicator_color1 Green extern int period=5; double varValue[]; double sum=0; ...
iMAonArray question
- Siro replied Jun 12, 2008
not my source, but i think it's working properly.
EMA crossover (ema 14 & 34)
- Siro replied Jun 9, 2008
you are right that the loop is a problem, however it doesn't break immediately, but it will be an infinite loop. and your loop is still wrong. if you declare an array with 500 elements, the array's indexes will be 0....499. for(int i=1;i<500;i++) or ...
problem with [i]
- Siro replied Jun 8, 2008
double m_10[500], m_20[500]; double m_10[0] = iMA(NULL, 0, 10, 0, MODE_SMA, PRICE_CLOSE, Current + 0); double m_20[0] = iMA(NULL, 0, 20, 0, MODE_SMA, PRICE_CLOSE, Current + 0); the problem is your declaration. you have to declare them as an array ...
problem with [i]
- Siro replied Sep 9, 2007
Roc_Histogram — here is a modified version of the roc indicator for those who prefer histograms. rck66, thank you for sharing your system with us. it looks promising.
Coppock Strategy
- Siro replied Jul 4, 2007
here is the MACD "ribbon" indicator. this is what Igor used yesterday on his charts instead of MACDsmoothed. they show the same signals. edit: you need all of the 3 indicators, otherwise it will not work properly. use the mtt-ErgodicMACD indicator ...
FXiGoR-(T_S_R) very effective Trend Slope Retracement system