Forum

Backtest EA using custom timeframe

Hi, Does anyone know how I can test an EA using custom timeframes, e.g. 90 minutes. Thanks, Mervyn

Can brokers tell if I am using a script or an EA to place or manage trades

Can brokers tell if I am using a script or an EA to place or manage trades

Line segments

Hi, I would like to draw a line on the chart. Or rather a line segment. After some searching I found that I could draw nice line with Object Create and OBJ_TREND . However these lines are infinite. I would like to draw a line with a definite start and end point. I have searched this frum for some

XONE Trader

Has anyone any experience of the XONE Trader platform ? Can it be interfaced to a MT4 EA? Maybe using the XONE platform API

Placing text on a chart

I use the following code to place text on a chart. In this case, just above the high of a bar by 10 pips (LabelOffset). ObjectCreate ( StringConcatenate ( "SS_" , Time[i]), OBJ_TEXT , 0 , Time[i], High[i] + LabelOffset); ObjectSetText( StringConcatenate ( "SS_" , Time[i])

Adding a Moving Average to a chart using code

Daft entry level question I guess. How do I add a moving average to a chart using code