Forum

Need custom moving average indicator

I need custom moving average indicator when i run it 1M time Frame i need to show 5M Time Frame values. anyone have like this indicator? thanks

Need Help to combine Bolinger Band & Parabolic Sar

i need to place orders using Bolinger band & Parabolic Sar . After touching B.Band need to wait for PSar Signal. but when come Psar signal price come inside from B.Band. so in this case i need to keep B.band signal in memory to use later & after place order need to clear memory. how to do this? i

Help to Close order with profit

i used following code to close only profit trades. but sometimes it close also loss trades. please some one help to resolve problem if (OrderProfit()> 0 && SellCondition== true ) { int orderstotal = OrdersTotal (); int orders = 0 ; int ordticket[ 30 ][ 2 ]; for ( int i = 0 ; i <

help for moneymanagement code

I use following moneymanagement code for my Ea. it working in micro accounts. but in ECN accounts not working. please some one help me for edit it if (MoneyManagement == true ) { double Vol = (AccountEquity()/ 1000 ); } else Vol = FixedLot; thanks

Please correct Object

I add following code to display Spread in chart. but it show spread as whole number not as decimal. (ex: it show 0.2 spread as 2.0) how to correct this code? { ObjectCreate ( "Spread" , OBJ_LABEL , 0 , 0 , 0 ); ObjectSet( "Spread" , OBJPROP_CORNER , 3 ); ObjectSet( "Spread"

Help for modify pending order

I need to modify BuyStop order when market revers with keeping 2 pips Gap. i use this following code. but it is not working. someone help me to fix it. void BuyStopModify() { for (int i=OrdersTotal()-1; i >= 0; i--) if (OrderSelect(i, SELECT_BY_POS, MODE_TRADES)) { if (OrderType() ==

Need help to create ea for this perfect hedging system

someone create ea for this perfect hedging system i will explain strategy. 01. To keep things simple, let's assume there is no spread. Open a position in any direction you like. Example : Buy 0.1 lots at 1.9830 A few seconds after placing your Buy order, place a Sell Stop order for 0.3 lots at

Please help to edit EA

I have found this EA from my friend. It use martingale system & hedging system together.I used this for some month. It work well. But if market go to big trend it loss entire account. So i want to reverse trading from this EA. Please someone add reverse trading to this EA. Use Stop loss according to

I need help for edit expert advisor

I have found this EA from internet. it is profitable for me. It place two buy trades. One buy trade in EURUSD and another buy trade in USDCHF. After profit some pips it close all trades. I need to do some changes for this. 1. Need to place 4 trades. (One buy trade in EURUSD and one buy trade in

Please help for some changes

I have found this ea in this forum. i want to do small changes as follows want to place Sell limit behalf Buy stop want to place Buy stop behalf sell limit want to place sell stop behalf Buy limit want to place Buy limit behalf Sell stop i changed code but it gives error as "order send() error -