- Search Crypto Craft
-
sangmane replied Jul 18, 2009hi, you can use TradingSimulator or VHands. It's free. search this forum
Looking for a program..
-
sangmane replied Jul 15, 2009hi, if all that you want to know is the red and blue dot status, just compare current macd value with the previous one. MacdCurrent=iMACD(NULL,0,12,26,9,PRICE_CLOSE,MODE_MAIN,0); MacdPrevious=iMACD(NULL,0,12,26,9,PRICE_CLOSE,MODE_MAIN,1); ...
Bb_macd_cct (Indicator using it)
-
sangmane replied Jul 12, 2009hi, the original indi using Comment() which always be placed on the left window. i change it to use object label. to set the placement, change the properties named xDistance and yDistance HTH
Adjust chart location of displayed 'ATR in Pips' text
-
sangmane replied Jul 12, 2009hi, xdistance starting from left to right on the window. ydistance starting from top to bottom setting coordinate (0,0) will put object at the top left corner HTH
How to calculate Object's x/y co-ordinates
-
sangmane replied Jul 12, 2009hi, why do you need atr on chart? and what level should be used as the base line? edited to add: this indy will display dot line above and below the close price at the distance of atr value. hope this help
ATR on chart
-
sangmane replied Jul 7, 2009hi, maybe u can try this way int TRIX_Period = 13; int Signal_Period = 8; bool Signals = true; int CountBars = 1500; trix_1 = iCustom(NULL,0,"TRIX",TRIX_Period,Signal_Period,Signals,CountBars,0,1); trix_2 = ...
How to use TRIX values in an EA
-
sangmane replied Jul 4, 2009Hi, is this what you mean? "int Count_Bars=100;" change to "extern int Count_Bars=100;"
I will code your EAs and Indicators for no charge
-
sangmane replied Jul 3, 2009here the macd indy i modify to use ema as the signal
Looking for a correct MACD