- Search Crypto Craft
-
sangmane replied Apr 11, 2010hayseed, very cool dashboard! those vertical 7 bars remind me of equalizer panel. any chance sharing your speakable indicator?
Need sound for indicator
-
sangmane replied Apr 11, 2010hi ppper, i save your file (test) to expert folder, run the strategy tester. it works. below is the screenshot.
EA - Daily open
-
sangmane replied Apr 11, 2010That EA should not be seen as a real EA, it is only meant to show you how to get daily open price and the example of using it.
EA - Daily open
-
sangmane replied Apr 11, 2010hi pipper, here is a sample ea that open order when price is 15 pips above daily open extern double TP = 50.0; extern double SL = 50.0; double Pip; int init() { Pip = Point; if(Digits==3 || Digits==5) Pip = 10*Point; return; } int start() { ...
EA - Daily open
-
sangmane replied Apr 9, 2010hi, the problems with your request are : 1. "price is trending upwards" 2. "appears to be the low for the day" maybe you can post a chart to make it clearer
Adjustable daily range price box indicator
-
sangmane replied Apr 8, 2010hi asgard, the basic of accessing csv file and save each cell in a 2 dimension array: FileName = "mydata.csv"; string s[10][100]; //assign array of string that will store 10 columns 100 rows of csv data int row=0,col=0; //column and row pointer for ...
Reading News from a CSV file
-
sangmane replied Apr 7, 2010First, make a function that will return the number of consecutive losses int Losses() { int Count = 0; for(int i=OrdersHistoryTotal()-1; i>=0; i--) { OrderSelect(i,SELECT_BY_POS,MODE_HISTORY); if(OrderProfit()>0) break; Count++; } return(Count); } ...
How do I stop trading for half hour after 2 consecutive losses?
-
sangmane replied Apr 7, 2010double sma =iMA(NULL,0,14,0,MODE_SMA,PRICE_CLOSE,0); double ema = iMA(NULL,0,14,0,MODE_EMA,PRICE_CLOSE,0); double lwma = iMA(NULL,0,14,0,MODE_LWMA,PRICE_CLOSE,0); double range = 0.0001; if (MathMax(sma,MathMax(ema,lwma)) - ...
Need Help With My Code
-
sangmane replied Apr 7, 2010William Percent Range is a flipped up-down stochastic
Inverted Stochastic
-
sangmane replied Apr 7, 2010hi, my concern is about rsi above/below 50. you can replace this rsi rule by using price close above/below smma for example: rsi 21 > 50 = close price > smma 21 = close price > ema 41 rsi 21 < 50 = close price < smma 21 = close price < ema 41 by ...
Can somebody help me with this EA? It is trading system of Mark McRea
-
sangmane replied Apr 7, 2010hi, the ea below is experimental. test it on demo account first. to use it, put a horizontal line, name it "hiddensl" (without quotes). position it to the level intended to be your sl. you can move it so that it can act as manual hidden trailing ...
Help. I need stoploss EA
-
sangmane replied Apr 5, 2010datetime yestdatetime = StrToTime(TimeToStr(Time[0],TIME_DATE)+" 20:00")-24*60*60; offset=iBarShift(NULL,PERIOD_M5,yestdatetime,false); YesterdayClosePrice=iClose(NULL,PERIOD_M5,offset); CurrentPrice=iClose("WS30",PERIOD_M5,1);
EA compare yesterdays 8pm price against todays 11am price
-
sangmane replied Apr 4, 2010your first post use 1.4.., and the 4th post use 1.618. you can change it to what you prefer to
FRAMAOsma.....
-
sangmane replied Apr 4, 2010can you post the part of the ea that call icustom? i'm quite sure this type of error come from the incorrect call to icustom.
invalid integer number as parameter 1 for TimeToNumber function
-
sangmane replied Apr 4, 2010you make a typo here : ExtMapBuffer3[i] = FRAMAOsma; else ExtMapBuffer4[i] = FRAMAOsma; should be : ExtMapBuffer3[shift] = FRAMAOsma; else ExtMapBuffer4[shift] = FRAMAOsma; I don't see the point to display both frama/signal and their difference ...
FRAMAOsma.....
-
sangmane replied Apr 4, 2010The error message shows that you use iCustom in incorrect format, especially on the line index part. Maybe you accidentally using string as line index. It's not related on how you manipulate string or time vars. Pls consult iCustom format on MT4 ...
invalid integer number as parameter 1 for TimeToNumber function
-
sangmane replied Apr 3, 2010Because you calculate Osma = Frama - Signal, of course Osma will always be very small compared to Frama and Signal. Frama will have values of 1.5xxx (for GU) and Osma will be a few pips. It's like you compare the value of MACD(12,26,9) with Ema12 ...
FRAMAOsma.....
-
sangmane replied Mar 28, 2010ejoi was one of the ATC 2008 participant. he got that amazing PF in that campionship. maybe he would share his strategy to us here?
Poll for your Profit Factor
-
sangmane replied Mar 28, 2010it doesn't actually check the ema "cross". the logis is as follow: you'll buy when ema 6 above ema 10, right? based on this assumption, if ema 6 go below ema 10 by 4 pips and there is open buy order, that order will be close. you'll sell when ema 6 ...
Please any EA to close trade on EMA cross?