jurcekmpt
jurcekmpt
Friends

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

jurcekmpt
Added topic Indicators
Hello! I hope this is not a spam and it is allowed. If anyone need any kind of indicator I can code it. Alerts, crosses
jurcekmpt
Added topic Average of moving average difference
Hello!  I would like to know how can I get average of moving average difference. I have this but not working. for ( int i= 0 ; i< Bars ; i++)  {    double EUR_MA= iMA ( "EURUSD" , 0 , 1 , 0 , MODE_SMA , PRICE_CLOSE ,i);
jurcekmpt
Added topic How to get every last Bid price, fastest way
Hello!  I would like to know how to get every last Bid price of EURUSD, GBPUSD and EURGBP on EURUSD chart . For now I have:  double EU1 = MarketInfo("EURUSD",MODE_BID); double GU1 = MarketInfo("GBPUSD",MODE_BID); double EG1 =
jurcekmpt
Added topic Automatic Lots size increase/decrease
Hello! Is there any better/smarter way to increase/decrease lot size every 100$ by 0.05lot? For now I have this, but I don't like it. Any better way? Thank you! if (AccountBalance()< 300 )       Lots= 0.1 ;
jurcekmpt
Added topic ZigZag last peak and bottom
Hello! I would like to know how can I get this zigzag indicator last 3 numbers. I don't care if indicator repaints I just need these numbers. Any idea how to get this 3 numbers to use them with EA? Thank you! Here is source code: #property
jurcekmpt
Added topic Help with code?
Hello! I would like to write an EA which will set pending orders . I will set pending orders manualy. Let's say at 1.3000 BuyStop and 1.2950 SellLimit (curreny price is below). When/if pending orders are reached nothing happened. When pending order
jurcekmpt
Added topic How to open new order or pending order immediately?
Hello! I would like to know if it is possible to open order immediately and not waiting for new tick? Thank you
jurcekmpt
Added topic Your opinion please
Hello! I would like to know what you think about this "strategy". We open trade (buy or sell it is not important) without TP and SL. Then if we get to profit we previous chose we close order if it gets to loss we previous chose we open
jurcekmpt
Added topic Line from x GMT to Y GMT candle close indicator
Hello! Does anyone have or know how to write such indicator. It should draw trend line on chart from x time candle close to y time candle close. Thanks
jurcekmpt
Added topic How to remove script for chart
Hello! Does anybody know how to do it? I allready google (https://sites.google.com/site/marketformula/mt4-help/how-to-remove-a-mt4-script-from-a-metatrader-chart ) for this but it does not work. Thanks
jurcekmpt
Added topic Will script save my problem
Hello! I write and EA thet opens multiple buys and sell. It opens new buy every time last opened buy is x pips in profit and vice versa for sell. Problem I have is that when there are important news the EA can't open trades fast enough and sometimes
jurcekmpt
Added topic hMailServer
Hello! Does anyone have tutorial/settings/properties how to get hMailServer to work with MT4? Is there any other/better solution? I had gawab and it worked great but it not anymore. :( Thanks
jurcekmpt
Added topic Gmail and MT4 works on laptop but not on other computer
Hello! SMTP server: smpt.gmail.com SMTP login: myname@gmail.com SMTP password:************ From: myname@gmail.com To: othermail@something.com Gmail and MT4 works on laptop (Win7) but not on other computer (Win XP). Both computer have same internet
jurcekmpt
Added topic Move Sl every x pips
Hello! Does anybody know how to write step trailing stop? It must move SL every x pips and not every tick . Example: +10 profit --> SL=OrderOpenPrice, +20 profit --> SL=OrderOpenPrice+10, ... Thanks
jurcekmpt
Added topic Error modify BUY/SELL order: 4202
Hello! Can anyone tell me where is the problem? Thanks! for ( int cnt4= OrdersTotal ()- 1 ;cnt4>= 0 ;cnt4--){ // I also try: for(int cnt4=0;cnt4<OrdersTotal(); cnt4++)        OrderSelect
jurcekmpt
Added topic How to code such EA
Hello! I want my EA to open new order when price is x-pips from last open order. EA opens buy when price is x-pips over last candle close. Then I want to open another buy when price is x-pips over from last open buy. I try like this but doesn't work
jurcekmpt
Added topic Indicators and EAs coding
Hello! I hope this is not a spam and it is allowed. If anyone need any kind of indicator I can code it. Alerts, crosses,... Same to EAs
jurcekmpt
Added topic Draw arrow or line
Hello! How can I make option of drawing arrow or line? I tried like this but it does draw arrows but not lines. Any idea? extern int Style=1; int init(){    if (Style== 2 ){       SetIndexStyle( 2 , DRAW_ARROW
jurcekmpt
Added topic EA problem with TakeProfit and StopLoss
Hello! This code works ok. Order has no TP and no SL it closes when adxplus and adxminus cross. extern bool Close_at_ADX_change=true; if (adx>ADX_more_than && adxplus<adxminus && Close_at_ADX_change ){
jurcekmpt
Added topic Adx values in array
Hello I have question about adx values in array. With Sar it works but with adx doess not. Any idea? If I delete "adx[i]>20" I get alerts and arrows otherwise not. Is there any other way to store adx values into array. for ( int i =
12