Forum

Pivot points Indicator MT4 bilt 600, Daily-Weekly-Monthly with labels shifted to the right adjustable position

Hi, Here is a free pivot point indicator (thanks toi gearhead who submitted the code here and improved on it ) that offers quite a few features: Daily,weekly, monthly pivots (select) Mid pivots (turn on and off) Chart auto shift to set position (adjustable from 10% to 50%) Labels position adjustable

EA on offline chart, Can Start function be triggered on offline charts ?

Guys, I've spent days reading posts about running an expert on an offline chart, fake ticks and all that trying to find out if it is or not possible at this stage to get the start function of an expert on offline chart triggered. I couldn't get a straight answer anywhere. The documentation doesn't

Renko chart backtesting - Is it possible to simulate....

Hi all, Here is a question for the experienced ones regarding the strategy tester : Most of us know how difficult it is to run a proper backtest on a Renko, range bars and other synthetic charts, right ? In this case, I'm talking about Renko. Since the best data we have is the M1 history and we have

EA test results - what is real and what is not

Hi guys, I wanted to post a couple of pictures, one for the report and one for the graph of an EA that allegedly can return spectacular profits. The rule is quite obvious, if it's too good to be true, it usually isn't true, but I wanted to hear more opinions about the theoretical possibility to

Daily pivots or Fibonacci labels shifted to the right

//+------------------------------------------------------------------+ //| ProjectName | //| Copyright 2012, CompanyName | //| http://www.companyname.net |

Closing orders, easy steps to use it in your EA

You need help with closing orders with your EA? This post is intended for people who don't know or are not sure how to select and close orders. Please understand that there are many other ways to close orders, this is just one way of many. So, here we go : Step 1. Include #include <stdlib.mqh> at

Order select , step by step easy way to use Orderelect() function to count trades

Hi, If you're here, you may need help using OrderSelect() in your EA, right? Add this custom function to your EA and when called upon, it will return the count of that EA's orders. As you know, OrdersTotal() will return the total numbers of orders not just the ones place by a particular ea. So, here