Posts made by sktsec
-
RE: script for all theaterposted in General Discussions
@priyaavatar
Have you tried place once the bar above as the second?
It seems that once per bar is just once per bar!!! It is done and finished the job after pass once for one pair, so did not pass for other pairs! -
RE: Stop and Reverse Strategy not working MT5posted in Bug Reports
@sm24
What if you input 0 instead of 1 to the Candle ID? Does it work? -
RE: script for all theaterposted in General Discussions
@priyaavatar
May be you can try changing the names of input variables. Because compiler reports possible name conflicts. -
RE: MT5 Indicator buffersposted in Questions & Answers
@jstap
Maybe the indicator change the arrow sign (up/down) using its internal code? -
RE: MT5 Indicator buffersposted in Questions & Answers
@vish
Are you sure they are buffers and not objects? -
RE: How can I know the max price frome candle close above ma50 until it close below ma50?posted in Questions & Answers
@roar
Never thought one can DIY a loop with the condition block. You inspired me -
RE: Suggestion to add block: Close most/least losable tradeposted in General Discussions
@Byens
Finally I found the "close least/most profitable trade" indeed included both losing and winning trades. Say, if there were some losing trades, the least profitable trade is the one that lost most.
I think that's the reason why the block of closing least/most losable trade doesn't exist. -
Suggestion to add block: Close most/least losable tradeposted in General Discussions
I find the existing blocks for closing least/most profitable trade very useful. When I think there is some blocks for closing least/most losable trade, there seems not exist.
Does anyone ever DIY such blocks using "Create Custom Blocks" ? Any clue to do so? So far I have no idea how it works
-
RE: automatic save templeteposted in General Discussions
@l-andorrĂ said in automatic save templete:
that is not
I think adding the block Custom MQL Code with a simple command of ChartSaveTemplate(0, enter_your_filename_here) will work. Sure you need some more block(s) above to identify your definition of market ends.
-
RE: Multiple symbol filter not working properly?posted in Questions & Answers
@robertk
In Group# you have set to the variable GROUP, are you sure it is the filter you really want? -
RE: How To Decompile EAposted in Questions & Answers
Two similar type of questions with the same answer:
- How to decompile EA
- How to make a 90% win rate EA
-
RE: TRADE DURATION OR EXPIRYposted in Questions & Answers
There are options in "Buy now" / "Sell now" and these may be what you want
-
RE: Custom Indicator Different Value Than Default When Testingposted in Questions & Answers
@AsphyxiA said in Custom Indicator Different Value Than Default When Testing:
NNFX
Are you setting the variable type of close price as int ????
Also you set Moving average type with int, but how come you input the string "Simple moving average"?
BTW what is NNFX, is it really useful? MT4/5 has built-in backtester.
-
RE: Use custom Swing High/Low indicator in EAposted in Questions & Answers
Open the data window in MT4 and you will get what you want
-
RE: my ea does not take sell positions.posted in Questions & Answers
@saadatfx
iHighest(NULL,0,MODE_CLOSE,52,1)Do you mean i+1 rather than 1.
iHighest(NULL,0,MODE_CLOSE,52,i+1)"i" mean the current bar of interest. Maybe not "i" exactly. You can simply set a variable to get the current bar and then use it instead.
-
RE: Importing MT5 example indicator RSI.mq5 is failingposted in Bug Reports
@Sparrow
After a manual update of a custom indicator, it seems that the fxdreem output of mt4/mt5 may not update until some hours later. More likely to happen when items are corrected rather than appended. -
RE: Every n'tick blockposted in Questions & Answers
@adentist
I think you should not skip bars in such specific case. "Every n ticks/seconds", is very useful, for example, if you want limit the frequency of do some heavy computation job to prevent unpreditable problems -
RE: Moving Averagesposted in Bug Reports
@Edtoloza
I think if you realise, you can make good use of "cross" below/above rather than "is" below/above