sergey
sergey
Friends

Add friends via their profile or user search and you will be able to see if they are online

sergey
Added topic Haven't traded for 2 years.. some syntax changes were made ?
Hi,   Honestly I quite forgot how to program in MQL, was just trying to compile an old program of mine:        It is probably something very basic, I just want this program to work for now :-)     Would appreciate
sergey
Registered at MQL5.community
sergey
Added topic general EA question
hi, I've programmed an EA which seems to get good results only for EUR/USD (on other pairs the balance gets to 0 quite fast) Is it reliable? should I use it ?    thanks 
sergey
Added topic 133:Alert("Trading forbidden.");
hi I get the following error what can I do to fix it
sergey
Added topic can't make trades
Hi all ! I've recently reinstalled MT-4 platform and for some reason my EA stopped executing trades , although It has worked before when the EA tries to make a trade, I get the following messages: I've enabled live trading here is the code
sergey
Added topic reinstalled meta trader 4, now expert doesn't make trades
Hi my EA used to work on the same platform once I reinstalled / updated meta-trader 4 it stopped making trades this is the error i get what can be the problem ? thanks
sergey
Added topic problems definig a variable in the right way
//+------------------------------------------------------------------+
sergey
Added topic can't make trade
#property copyright "sergey antipin" #property link       "http://www.metaquotes.net" extern double buffer= 0 ;           extern double stoploss= 20
sergey
Added topic can't make trade
//+------------------------------------------------------------------+
sergey
Added topic ea issue
I've programmed an ea which should do ok on EUR/USD ( backtested from 2000 - 2010 ) http://img851.imageshack.us/img851/6564/12314.jpg but failes on all other pairs should I throw it away
sergey
Added topic what should I add to this code before I run it on a live account ?
I tried running this EA on a live account and got some delay in the execution of the trade ( the blue line is where it should sell ) any idea why ? extern double buffer= 0 ;           extern double
sergey
Added topic can't get swap values
//---- double     swaplong,swapshort; int spread; //+------------------------------------------------------------------+
sergey
Added topic how to calclate risk of ruin for non linear relationship between the volume and account balance ?
I use the following formula to set the volume size M = MathRound ( MathLog (AccountBalance()/(367.88/M+1) ) / MathLog (2.72) ); -------------------------------------------------V OrderSend(Symbol(), OP_SELL, 0.01*M, Bid, 2, Ask+stoploss*Point*K
sergey
Added topic what is a good way to increment volume without losing all ??
I use a simple method for each trade I make... risk of 0.5% of the total account balance per trade however it doesn't seem safe enough.... <refer to the spike in the attached report file> is there a better way to manage volume so that it
sergey
Added topic how can you tell(estimate...) your EA will work in the future and for how long ??
I've written some EA which I backtested on 10 years of 15min EUR/USD data If it shows consistent profit through all that period will it be normal to assume it will work for the next 10 years
sergey
Added topic how can I use math functions in MQL4 ?
I want to calculate ln(x) is there i library or something i need to add
sergey
Added topic question about a robot
I wrote a robot which performs good only on GBP/USD but fails miserably on all other pairs Is that the way it should be
sergey
Added topic why do i get ordersend error 148 ??
//--- * short trade if   (trade_ok==true) { if ( ( Ask- SMA_10day  < buffer* Point *K ) && ( price_above==true))            {       
12