Advertisement
Edit Your Comment
script for avoiding lots bigger than "X"
Dec 22, 2017 at 11:07
Tham gia từ Oct 29, 2014
3bài viết
I was writing a code because I want to set a maximum lot. I mean a script for avoiding lots bigger than 1, for example. When I compile the system says "semicolon expected". I post de code base in case someone can help me.
I someone know an indicator for what I said....
Thanks!!
extern bool MM = TRUE;
extern double Risk = 2;
extern double Lots = 0.1;
extern double LotDigits =2;
extern double MaxLots =1;
double GetLots()
void Start()
{
double minlot = MarketInfo(Symbol(), MODE_MINLOT);
double maxlot = MarketInfo(Symbol(), MODE_MAXLOT);
double leverage = AccountLeverage();
double lotsize = MarketInfo(Symbol(), MODE_LOTSIZE);
double stoplevel = MarketInfo(Symbol(), MODE_STOPLEVEL);
double MinLots = 0.01; double MaximalLots = 2.0;
{
if(MM)
double Lots = NormalizeDouble(AccountFreeMargin() * Risk/100 / 1000.0, LotDigits);
if (AccountFreeMargin() < Ask * lots * lotsize / leverage)
return (result);
}
}
//+------------------------------------------------------------------+
I someone know an indicator for what I said....
Thanks!!
extern bool MM = TRUE;
extern double Risk = 2;
extern double Lots = 0.1;
extern double LotDigits =2;
extern double MaxLots =1;
double GetLots()
void Start()
{
double minlot = MarketInfo(Symbol(), MODE_MINLOT);
double maxlot = MarketInfo(Symbol(), MODE_MAXLOT);
double leverage = AccountLeverage();
double lotsize = MarketInfo(Symbol(), MODE_LOTSIZE);
double stoplevel = MarketInfo(Symbol(), MODE_STOPLEVEL);
double MinLots = 0.01; double MaximalLots = 2.0;
{
if(MM)
double Lots = NormalizeDouble(AccountFreeMargin() * Risk/100 / 1000.0, LotDigits);
if (AccountFreeMargin() < Ask * lots * lotsize / leverage)
return (result);
}
}
//+------------------------------------------------------------------+

*Nghiêm cấm sử dụng cho mục đích thương mại và spam, nếu vi phạm có thể dẫn đến việc chấm dứt tài khoản.
Mẹo: Đăng ảnh/url youtube sẽ tự động được nhúng vào bài viết của bạn!
Mẹo: Dùng @ để tự động điền tên người dùng tham gia vào cuộc thảo luận này.