jackee1234
jackee1234
Friends

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

jackee1234
Added topic Can MT4 view multiple charts in diff time frame for the same currency?
Can MT4 view multiple charts in diff time frame for the same currency
jackee1234
Added topic Backtesting with tick data
Say I have an EA that execute based on tick level (Bid Ask) information, is there a way to backtest it with tick level information in metatrader? There are two problems: a. it seems metatrader only supports 1 min chart and tick level are simulated
jackee1234
Added topic Wrapper for slow indicator for backtesting
If a technical indicator works very slow, and I wish to include it in an EA (using  iCustom ), is there a some "wrapper" that could cache the indicator results to a file based on the particular indicator inputs? This way I could get a better
jackee1234
Added topic Candle stick pattern indicator
Is there a candlestick pattern indicator that is able to capture the candlestick here: http://www.babypips.com/school/elementary/japanese-candle-sticks/japanese-candlesticks-cheat-sheet.html
jackee1234
Added topic News feed indicator for backtesting
I need a news indicator that shows me news starts from 2016, and the impact(big, medium, small), the outcome (positive, negative news). Are they such indicators available? I am aware of FFCal and FFC ( https://www.mql5.com/en/code/15931 ), but seems
jackee1234
Added topic Make Indicator update only once and never changed the appearance
Is that a way to let the indicator update the chart once, and for the subsequent, it will remember the old results rather than update every tick or candle? I am asking this question since I only let the start() run once with the following
jackee1234
Added topic stringbuilder or stringbuffer in MQL4
Is there something like a stringbuilder (Java) or stringbuffer (C#) in MQL4 that facilitates fast string append
jackee1234
Added topic Is there a possibility to control multiple ( nested #include ) inclusions of .MQH header file in MQL4?
For MQL4, will it include the .mqh header files multiple times (or does it matter?), if say one header file makes use of the header files we already included? If yes, how to prevent that
jackee1234
Added topic Is there any existing implementation of List/Vector
Is there any existing implementation of list of string, integer etc. where we can add element, remove element directly, without caring of the size of the arrays
jackee1234
Added topic Trading forex using machine learning
Say I have a stop loss and take profit strategy, to label the training set (historical prices) as buy or sell or do nothing, am I right that I need to know whether that historical price would lead to loss or take profit according to the stop loss and
jackee1234
Added topic Technical Indicators for trendings
I need an indicator can identify whether there is a weak/strong trend (in what direction) and is it a sideway. With Adx we can identify the strength of the trend, with moving average we can somehow know the direction of the trend, Is there an
jackee1234
Added topic Technical indicators
Is there any good indicators for the following: a. horizontal support and resistance (and channel if possible)? b. triangle breakout or support/resistance breakout c. trending or not trending according to moving the average Preferably with source
jackee1234
Added topic Generating new strategies automatically
Is there a way to generate new strategies automatically using any methods in artificial intelligent? Any such articles would be greatly helpful. Reasons are that there are exponentially many indicators we can combine, but it is hard to get one with
jackee1234
Added topic neural network or machine learning for EA
Any good articles on how to make use of neural network or machine learning in identifying market inefficiencies and forming EA? More specifically, what kinds of neural network architecture/machine learning techniques, usage of features, how to train
jackee1234
Added topic Print variables values
I hope to write a function  PrintVars that is able to print the print variables with their names. e.g., int var1=1; bool var2=true; int var3=2; PrintVars(var1,var2,var3); The output to the console is: var1=1 var2=true var3=2 The difficulty
jackee1234
Added topic How to know the new ticket number after partial closed a position
When we  OrderClose  a position partially (say you buy at 2 lots but only close for 1 Lot), it will open a new ticket number, but how do we know that ticket number specifically
jackee1234
Added topic MT4 backtest result panel
when I see the backtest results, there is a  Result panel  (see, e.g.,  https://quivofx.com/wp-content/uploads/2015/02/result.png ) that listed all transactions for the backtest. Is there a way to quickly scroll to the relevant portion
jackee1234
Added topic EA create multiple instances of Custom Indicators
When I use the custom indicator, it shows the graph as follows  ‌ When I use the Expert Advisor with the custom indicator, it shows the following  ‌ It also repeated opened a lot of custom indicator when I am doing backtesting. How should I
jackee1234
Added topic Drawing Fibonacci indicator automatically
I wish to analyze a chart using Fibonacci indicator. Is there any methodologies (or libraries) that can draw of Fibonacci indicator automatically on a chart with MQL4
jackee1234
Added topic How to draw rectangle around a set of candles in custom indicator
Say I have two candles satisfy a property , I want to draw a rectangle around them like the following under custom indicator, what should I do? The [setIndexStyle][https://docs.mql4.com/customind/setindexstyle] does not seem to have this option
12