- Search Crypto Craft
-
sangmane replied Oct 12, 2010hi, have you tried using template?
attaching 3 indicators in one chart
-
sangmane replied Oct 12, 2010it's a tetris game, isn't it? correct me if i'm wrong..
Bollinger Band trade tools - Trade Manager & Dashboard
-
sangmane replied Oct 11, 2010Hi Ivan, I don't see hiring a programmer would be the issue in your case as long as you know how to write your strategy's formula in Excel. You can safely keep your secret strategy. Considering the fact that many trader have good knowledge in Excel ...
EXCEL Trading
-
sangmane replied Sep 30, 2010hi tpr, check the attached indicator
Small help with the code to count up-bars and down-bars
-
sangmane replied Sep 28, 2010My guess: _AD:= if(((((C-L)-(H-C)) / (H-L)) * V) == NULL ? 0 : (((C-L)-(H-C)) / (H-L)) * V); or if(((((C-L)-(H-C)) / (H-L)) * V) == NULL) _AD=0; else _AD = (((C-L)-(H-C)) / (H-L)) * V; cmiiw
Modifying indicator to account for NULL values - A Little Help, please!
-
sangmane replied Sep 17, 2010hi, check the modified indicator below
Pin Bar Indicator needs modifying
-
sangmane replied Sep 14, 2010it seems the cause is OP put this script on experts folders and run it as ea. it is a script, not ea. see the code: .... #property show_inputs .... //+------------------------------------------------------------------+ //| script program start ...
Problem with opening orders for multiple pairs - Someone pls help
-
sangmane replied Sep 14, 2010based on the scripts' code, it should open one order for each pair listed on the inputs box.
Problem with opening orders for multiple pairs - Someone pls help
-
sangmane replied Sep 14, 2010hi oktar, before access price on higher tf, you should get the corresponding bar's shift on that tf while (i >= 0) { int TFShift = iBarShift(NULL,tf,Time[i]); Buf_0[i] = iOpen(NULL, tf, TFShift); i--; } hope this help
[mt4] Indicator that draws Open price from different TF - help needed
-
sangmane replied Sep 8, 2010quoted from MT4 lang reference: double bid =MarketInfo("EURUSD",MODE_BID); double ask =MarketInfo("EURUSD",MODE_ASK);
Multi-currency EA programming question
-
sangmane replied Sep 7, 2010TP = 5 SL = 50 win rate = 90 out of 100 (90%) profit/loss calculation for 100 trades (excluding spread/commision), - win 90 times = 90xTP = 90x5 = 450 pips - lose 10 times = 10xSL = 10x50 = 500 pips win - lose = 450 - 500 = -50 pips
Price Action based EA
-
sangmane replied Sep 5, 2010it seems metaquotes server lost history data for June 2010. url
Any options for missing MT4 data?
-
sangmane replied Sep 5, 2010hi vip, instead of yesterday (mtf) open price, i intentionally use current day open price, because afaik most traders using this price to gauge today bias. i don't see yesterday close price differ with your mtf candle close price. btw, i have ...
High Low Indie Mod
-
sangmane replied Sep 1, 2010change : i=Bars-Counted_bars-2; to i=Bars-Counted_bars-1;
Indicator Help to draw arrow after x pip move
-
sangmane replied Aug 30, 2010hi, pls check the attached indi
help with code for displaying weekly pivots
-
sangmane replied Aug 26, 2010There is one commercial apps named DDETool. Google "DDETool".
MT4 + Excel
-
sangmane replied Aug 5, 2010You can check the numbers of past bars using iBars int bars = iBars(Symbol(),TimeFrame);
Pinbar and S/R scanner