Neda shahbazi
Neda shahbazi
web developer at
I have started developing websites since 2013, I created some dynamic websites with a full content management system, with using Asp.net, C#.NET, MVC technology in developing websites, I have enough experience in creating online shopping websites as well
I am a very highly determined, confident and hard-working professional who has the ability to be committed and strong-minded. Over 6 years of experience highlights my proficient programming skills in ASP.NET web applications, C#.NET, MVC . I have the aptitude and capacity to adapt to new environments and to undertake new challenges.
Neda shahbazi
Added topic how to define lable that can move when resize the window
hi I put label in my expert and use below codes bool Label( const long                     chart_ID= 0
Neda shahbazi
Added topic how to define that don't put arrow and line when I open position
hi when I open position in the chart shows some line and arrow I don't want it puts this objects in the chart when I open position what should I do? Best Regards Neda
Neda shahbazi
Added topic how I can open 2 position
hi I wrote an expert that define 2 button Buy and Sell can I define that when click on each button it opens 2 position in one click I mean when I click on Buy it opens 2 buy position and when I click on Sell it opens 2 Sell position Best Regards Neda
Neda shahbazi
Added topic how to find yesterday AccountEquity
I used below code for equity AccountEquity() now I want to now what is yesterday AccountEquity How I can do it? Best regadrds Neda
Neda shahbazi
Added topic how to change text color in Comment
hi every one I use comment to show some text in chart:    Comment (            "\n" , "%Risk:  " ,Risk           , "\n" , "Lot: "
Neda shahbazi
Added topic how to put limitation for input
hi every one I define an extern in expert: extern int Risk I want user just can insert numbers from 1 up to 3 like 1 1.2 1.3 , ..... 3 and couldn't insert number less than 1 or bigger than 3 How I can do it? Best regards
Neda shahbazi
Added topic how to define parameters that users can choose value from DropDownList
hi every one I want to define an extern parameter in an EA and I want put some value on it like: 1 1.1 1.2 1.3 , .... that user can select one of them from DropDownList how I can do it? Best Regards Neda
Neda shahbazi
Added topic other parameter like NormalizeDouble()
hi I use   NormalizeDouble in MT4 is there other function like  NormalizeDouble in MT4? Best Regards Neda
Neda shahbazi
Added topic variable in ATR indicator
hi every one below is ATR indicator codes in MT4 //+------------------------------------------------------------------+
Neda shahbazi
Added topic when 2 moving average line collided
hi every one I define 2 moving average in EA: iMA (Null, 0 , 1 , 0 , MODE_EMA , PRICE_CLOSE , 0 ) iMA (Null, 0 , 50 , 0 , MODE_EMA , PRICE_CLOSE , 0 ) number one with ma_period=1 number two with ma_period=50 I want when these two line collided it
Neda shahbazi
Added topic problem in showing New York time
hi I use TimeZone indicator ( attached) it shows all time correctly but when I put Time Minute for New York it didn't change color to Lime source code is : if (TimeHour( TimeLocal () + ((- 5 - timezone) * 3600 )) >= 8 && TimeHour(
Neda shahbazi
Added topic how to show chart period current in Comment
hi I write an expert that I want in this expert it shows chart current period I wrote below code that if I select M1 time frame it shows M1 in:      if ( PERIOD_CURRENT == PERIOD_M1 )       {
Neda shahbazi
Added topic how to get Balance, Equity, margin ,... from broker into Expert
hi every one I want to use Balance, Equity, Margin, Free margin, Margin Level in expert but I don't know how I can get this info from broker I want to use MarketInfo() but I can't find them in MarketInfo() can any one help me? Best Regards Neda
SEYEDMEHDI MAJEDI
SEYEDMEHDI MAJEDI 2020.04.14
int OnInit()
{
_symbol=Symbol(); // set symbol
_point = MarketInfo(_symbol,MODE_POINT);
_digits= int(MarketInfo(_symbol,MODE_DIGITS));
MULT=1.0;
if(_digits==5 || _digits==3)
MULT=10.0;
PipValue=PipValues(_symbol);
//
return (INIT_SUCCEEDED);
} //--------------------End init ------------

for Auto LOT select :
orderlots = MathMin(MathMax((MathRound((AccountFreeMargin()*Risk/1000/100)


and Other :

void OnStart()
{
//--- Show all the information available from the function AccountInfoDouble()
printf("ACCOUNT_BALANCE = %G",AccountInfoDouble(ACCOUNT_BALANCE));
printf("ACCOUNT_CREDIT = %G",AccountInfoDouble(ACCOUNT_CREDIT));
printf("ACCOUNT_PROFIT = %G",AccountInfoDouble(ACCOUNT_PROFIT));
printf("ACCOUNT_EQUITY = %G",AccountInfoDouble(ACCOUNT_EQUITY));
printf("ACCOUNT_MARGIN = %G",AccountInfoDouble(ACCOUNT_MARGIN));
printf("ACCOUNT_MARGIN_FREE = %G",AccountInfoDouble(ACCOUNT_MARGIN_FREE));
printf("ACCOUNT_MARGIN_LEVEL = %G",AccountInfoDouble(ACCOUNT_MARGIN_LEVEL));
printf("ACCOUNT_MARGIN_SO_CALL = %G",AccountInfoDouble(ACCOUNT_MARGIN_SO_CALL));
printf("ACCOUNT_MARGIN_SO_SO = %G",AccountInfoDouble(ACCOUNT_MARGIN_SO_SO));
}
Neda shahbazi
Added topic how to show profit in pips
hi in MT4 in trade chart at right of chart it shows whole trades profit in dollars I want it shows all trades profit in one day in pips how I can do it? Best Regards Neda
Neda shahbazi
Added topic how to show candle time correctly when change corner attribute
hi every one I used below code for showing candle time, it shows candle time in 3 time frame like        M1    00:12
Neda shahbazi
Added topic how to show time like 00:00
hi every one I use below codes to show candle time in 3 time frame It shows time like                             M    0:25
Neda shahbazi
Added topic how to change color font color in candle time
hi every one I use below Indicator to show candles time in all frame time now I want when 10 seconds left until the end it changes font color to Red can anyone help me ? Best regards Neda
Neda shahbazi
Added topic how to put buttons in one window to drag all of them
hi every one I write an expert that put 3 buttons : SELL  BUY CLOSE I want to put these 3 buttons into a panel or window that I can drag them together can any one help me Best regards Neda
Neda shahbazi
Added topic how to show currecnt candle time in M1 and M5 in one chart
hi every one I write below code in expert to show current candle time in chart and it works in all time frame M1,M3,M15,.... void OnTimer ()   {    long time= TimeCurrent ();    long ekh=( Period ()* 60 +Time[ 0 ]-time);
Neda shahbazi
Added topic how to change iMAOnArray from Mt4 to MT5
hi every one I used below code in my expert in MT4 now I want use it in MT5 what should I replace instead of iMAOnArray in MT5   SignalBuffer[i]=iMAOnArray(MainBuffer, Bars ,DPeriod, 0 , MODE_SMA ,i); best regrads Neda
12