mazen nafee
mazen nafee
  • 정보
9+ 년도
경험
0
제품
0
데몬 버전
0
작업
0
거래 신호
0
구독자
accountant cairo
Sergey Golubev
Sergey Golubev
주제에 코멘트하기 Something Interesting to Read July 2014
Forum on trading, automated trading systems and testing trading strategies Something Interesting to Read April 2014 newdigital , 2014.04.25 08:45 Quantitative Trading: How to Build Your Own
Muhammad Syamil Bin Abdullah
Muhammad Syamil Bin Abdullah
주제에 코멘트하기 Something Interesting to Read July 2014
The Problem of HFT - Collected Writings on High Frequency Trading & Stock Market Structure Reform : Haim Bodek This book explores the problem of high frequency trading (HFT) as well as the need for US
Something Interesting to Read July 2014
Muhammad Syamil Bin Abdullah
Muhammad Syamil Bin Abdullah
주제에 코멘트하기 Something Interesting to Read July 2014
The Holy Grail Trading System The true story of a 100% mechanical automated forex trading system that returned over 1000% inside 13 months turning 10,000 GBP to over 100,000 GBP In 2005 I discovered
Something Interesting to Read July 2014
Sergey Golubev
Sergey Golubev
주제에 코멘트하기 Something Interesting to Read July 2014
Forum on trading, automated trading systems and testing trading strategies Something Interesting to Read June 2014 matfx , 2014.06.27 08:37 Trading Exchanges Market Microstructure Practitioners
Sergey Golubev
Sergey Golubev
주제에 코멘트하기 Something Interesting to Read July 2014
Forum on trading, automated trading systems and testing trading strategies Something Interesting to Read June 2014 matfx , 2014.06.28 08:35 Inside The Black Box : Rishi K Narang Whether you call it
Icham Aidibe
Icham Aidibe
Adding a simple button on the right-bottom corner
Hi, I read the doc on how to add object (clickable button), but I'm confused. Can someone give me a simple example : 1 button -> clicked -> execute function test(). Thanks
Icham Aidibe
Icham Aidibe
Different Symbol(Specification), different lot size, same potential profit/loss by pip
Trying to write a function that homogenise my deals : Symbol 1 : Lot size : 0.01 (x) Tick size : 0.5 Tick value : 12.5 euros Potential profit for z pips : 10 euros Symbol 2 : Lot size : y Tick size : 0.5 Tick value : 5 euros Potential profit for z
Icham Aidibe
Icham Aidibe
Comment() : shows text in upper left corner - anyway to colorize text inside ?
Hi, I'm looking for a colorful-way to show info (text, strings) in the upper left corner . For that I'm using Comment() function. Is there anyway to colorize text from inside this function ? Thanks
Icham Aidibe
Icham Aidibe
Function to stop the EA 7 days before expiration date
Hi, I'd like to stop the expert running on a symbol 10 days before the expiration date, how to using SymbolInfoInteger( SYMBOL_EXPIRATION_TIME) please
Icham Aidibe
Icham Aidibe
Adding MTF support to an indicator
Hi, I'd like to add data from uppers TF in an indicator : ex. Indicator on M1 - show the results of M5, M15 etc ... for the same indicator. How to do this
Icham Aidibe
Icham Aidibe
When the candle close ...
Hi, Is there anyway to act (ie. enter a long) when the candle the signal appeared on close
Icham Aidibe
Icham Aidibe
return value of 'OrderSend' should be checked
Hi ! I'm wondering how to do that ...:/ the warning appeared @ the last update //--- preparing a request
Icham Aidibe
Icham Aidibe
Cumulative position price
Hi there, If i open a long at x1, x2, x3, i can see in the trade tab that the price change. How to return this value in mql5 ? POSITION_PRICE_OPEN returns only the initial buying price. Thanks
Icham Aidibe
Icham Aidibe
Stoploss : numbers, double, digits ...
I'm trying to set a SL, here's the formula used :              request.sl= NormalizeDouble ( SymbolInfoDouble ( Symbol (), SYMBOL_BID ) - (SLFactor * SymbolInfoInteger ( _Symbol
Icham Aidibe
Icham Aidibe
Run an optimazation from within EA & integrate the results
Hi, Is there a way to run an optimization test from within the EA & integrate the results as the settings of the EA
Icham Aidibe
Icham Aidibe
Show profit of all positions actually opened for all symbol
printf("Numbers of opened positions : %G", PositionsTotal()); for ( int x= 0 ;x<= PositionsTotal ();x++) { //numbers of position = index printf ( "Index of the position %G" ,x); printf ( "Symbol of the selected position : %G" , PositionGetSymbol
Icham Aidibe
Icham Aidibe
Make the EA settings box clean
Hi, I'd like to add text to make the settings box of an EA clean by adding text where's the inputs stand. Ex : Text : Money Management input bool MM true etc ... Text : Behaviour input .... etc
Icham Aidibe
Icham Aidibe
If statement : if a condition is filled then ... NOTHING
Hi, I'm looking for the operator to "break" if a condition is filled since 'break' only works with while, do while, for ... THanks
Icham Aidibe
Icham Aidibe
Backtesting & reliability
Hi, Just reporting a fact : the results of an EA i've backtested on a period are different from a day to another for the same period. Did i miss something ? ADD : it made my optimized settings obsolete the day after, i'm disappointed :/
Icham Aidibe
Icham Aidibe
EA, Real account, backtesting
Hi, Before using an EA on a real account , should it be reliable in 1 month backtesting, a year backtesting or all history chart backtesting ? Thanks