Stefano Antonio Piovesan
Stefano Antonio Piovesan
  • Information
no
experience
0
products
0
demo versions
0
jobs
0
signals
0
subscribers
Friends

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

Stefano Antonio Piovesan
Added topic OrderSend slippage value
The help for OrderSend says: slippage [in]   Maximum price slippage for buy or sell orders If Is this a digits or pip value (i.e. 20 means 2 pips for EURUSD contract with 5 digits)
Stefano Antonio Piovesan
Added topic Launch Terminal Using Settings of the Strategy Tester
I am trying to l aunch the  Strategy Tester from a command line. I am using the steps indicated in the Client Terminal help, section Tools-Configuration at Startup. I created a ma0.ini file as in the help example, I placed it in the terminal
Stefano Antonio Piovesan
Added topic mq4 batch build
I have a few EA and indicators that depend on several libraries and include files. Is there a way to make a sort of batch build file to compile all of them instead of manually build within MetaEditor
Stefano Antonio Piovesan
Added topic SendNotification from a script hangs MT4
I tested Notification with the Test button in the Notification tab and it works. Then I have a simple script that sends a notification. void OnStart ()   { //---    SendNotification ( "Test SIGNAL!" + Symbol ());
Stefano Antonio Piovesan
Added topic Changing extern variable within the EA does not change input mask when reopened
I would like to change an input variable value within the EA and show its changes value in the EA input mask. If a define a variable like a  extern int myvar = 0 ; then I can change its value myvar += 1 ; but when I reopen the
Stefano Antonio Piovesan
Added topic Expert advisor input validation
I would like to validate EA input values (i.e min. and max.). Is this possible? I would like to enable some inputs based on the selection of one other (i.e. enabling one option would enable some other inputs). Is this possible too
Stefano Antonio Piovesan
Added topic Order stop loss notification
I place an order with take profit and stop loss within an EA. Is it possible to be notified of the stop loss execution of a placed order in the EA, without looking at the trade history? If I have to look at history, I must send
Stefano Antonio Piovesan
Added topic Disable manual trading when a EA is running
Is it possible to disable manual trading (i.e. closing EA opened positions) when the EA is running in order to not interfere with the EA
Stefano Antonio Piovesan
Added topic Flat GUI panel for EA in MT4
I would like to have a panel in an EA like this one: - some text with a chevron to open the panel. - a flat panel with no title bar with buttons and edit boxes Someone knows any similar example out there
Stefano Antonio Piovesan
Added topic Input value array with ComboBox
I have an array of N values as EA inputs with a default value. Instead to have N number of input fields , I would like to have a combo to select the i-th value in a single associated input field and change it. Is this possible
Stefano Antonio Piovesan
Added topic Optimization with more than two variables
I am running an expert advisor optimization with Metatrader4. Metatrader offers the optimization graph that shows profits for two optimization variables. I would like to optimize more than two variables and look where the best profits lie, not the
Stefano Antonio Piovesan
Added topic Draw a custom indicator in a EA
I would like to draw a simple indicator in my EA. It could be as simple as drawing myVal:    double D2sma = iMA ( NULL , 0 , 10 , 0 , MODE_SMA , PRICE_CLOSE , 0 );    double D1ema = iMA ( NULL , 0 , 20 , 0 , MODE_EMA , PRICE_CLOSE
Stefano Antonio Piovesan
Added topic Strategy tester MT4 chart lines
I am testing a simple EA that uses three MA, with the iMA api. When testing it, the chart shows the MA lines.  I would like to color or hide these MA lines. Is this possible
Stefano Antonio Piovesan
Added topic Separating class definition and implementation
Is it possible to separate class definition and implementation in MetaTrader 4, as in  C++   .h  and  .cpp  files? All MetaTrader examples have class definition and implementation in the same file. I would like to give header
Stefano Antonio Piovesan
Registered at MQL5.community