Codes

PremiumPivot for MetaTrader 4

The indicator plots Pivot levels for 3 custom periods on chart

Forum

"array out of range" only when using "#property strict"

Hi This is a simple fractal indicator. MAIN QUESTION : Why getting " array out of range " error only when using "#property strict" ? //+------------------------------------------------------------------+ //| Fractals.mq4 | //|

Copy trading EA without csv file or without delay

Hi Question 1- Please advise what are the other methods other than using a csv file for copy trading? Because the trade will not open until the new price arrives and this will cause a lot of delay. What methods is there that the delay is close to zero? Question 2- Is there any way to use csv file

How to fill between buffers with solid color

Hi I need to fill between buffers with solid color, smooth and without zoom in problem. How built-in ichimoku do it prefect but published source code of ichimoku not? ( Please check screen shot to understand my mean) I know it is possible to do it by drawing too many triangles but it makes mt4 very

Create custom server for back testing

Hello I want to access all MT4 futures during back testing. (Like FXCM platform) Is it possible to install test server and run prices with custom speed and connect to a account the server

strategy tester not using max possible CPU, only 25%

Hello I have 8 CPU cores but MT4 use only 25% of CPU. please check attached screen shots. What can I do to use max possible CPU

What is meaning of these codes?

Hello What is meaning of these codes? I don't understand Red and bold parts. 1- what is variables started with _ ? 2- what is _mtfCall ? 3- what is meaning of this statement : double PP= ( )? : ; If possible, please send me documents or references to understand these codes. MACDHistB1[i]= (

iCustom run an indicator per buffer?

Hi If I use iCustom like bellow to save 4 buffers, it run the indicator 4 time for each buffer and waste CPU and resources. I'm right?! Buffer[i]=iCustom(NULL,0,"CustomIndi",1,i); Buffer[i]=iCustom(NULL,0,"CustomIndi",2,i); Buffer[i]=iCustom(NULL,0,"CustomIndi",3,i);

Pivot indicator without iBar function

Hello If possible please send me any standard pivot indicator without iBar function used. My pivot indicator not working in strategy tester . I think iBar function caused that. Thanks

Draw buffer in both Subwindow and main Chart

Hello Is it possible to draw some buffers inside sub-window but draw other buffers in main chart? Thanks in advance

Assign indicator buffer for all bars to an array (The indicator has bars limit)

Hello Is it possible to assign indicator buffer for all bars to an array while the indicator has bars limit? For example the indicator calculating buffer for last 500 bars , and I want to assign buffer for all bars into an array. because I don't have access source to remove this limit