Also check your buy/sell price is above/below the previous candle median price.
Posts made by sktsec
-
RE: 🤔 Stop Loss - Middle of Last Candle?posted in Questions & Answers
-
RE: Ignoring trade parameters after a lossposted in Questions & Answers
I might have missed some of your points. Actually using your reverse logic to set a bool variable, then put a condition above orginal buy/sell. True: Orginal buy/sell. False: sell/buy
-
RE: How do I use several buffers at the same time?posted in Questions & Answers
Previously as stated:
@clubdio
As you care this indicator a lot so I look into it more carefully.You have 8 indicator buffers.
Buy signal if and only if 1,2,3,4 appear in 1st, 3rd, 5th and 7th buffer RESPECTIVELY.
Sell signal if and only if 1,2,3,4 appear in 2nd, 4th, 6th and 8th buffer RESPECTIVELY
You can use this logic combination to get what you want.
-
RE: How do I use several buffers at the same time?posted in Questions & Answers
@jstap
Checked on data window, the arrows are objects determined by a combination of buffers as I previously stated. -
RE: 🤔 Stop Loss - Middle of Last Candle?posted in Questions & Answers
@davidmcc
Use formula block to get 0.5*(Candle High + Candle Low). That's what you need -
RE: How do I use several buffers at the same time?posted in Questions & Answers
@clubdio
Buffers indeed are the data you see on the Data Window.
Sure buffers can be assigned colors. -
RE: Ignoring trade parameters after a lossposted in Questions & Answers
@dgoodwin418
Place 2 blocks, one disable block and one enable block below your reverse logic for true and false respectively. -
RE: How do I use several buffers at the same time?posted in Questions & Answers
@clubdio
As you care this indicator a lot so I look into it more carefully.You have 8 indicator buffers.
Buy signal if and only if 1,2,3,4 appear in 1st, 3rd, 5th and 7th buffer.
Sell signal if and only if 1,2,3,4 appear in 2nd, 4th, 6th and 8th buffer.
You can use this logic combination to get what you want.
-
RE: How do I use several buffers at the same time?posted in Questions & Answers
@clubdio
So you can still use the condition block to identify the arrows -
RE: Ignoring trade parameters after a lossposted in Questions & Answers
Could you try disabling the buy block as soon as you want to reverse it to sell, or vice versa?
-
RE: Build block in mq5posted in General Discussions
@Saesint
Maybe you can edit the content and replace it with either blank or simple words like [Post deleted due to duplication] -
RE: How do I use several buffers at the same time?posted in Questions & Answers
If this indicator is repaint, don't waste your time. I've tried out many good looking indicators, the more accurate you see the less accurate they actually are.
-
RE: How do I use several buffers at the same time?posted in Questions & Answers
@clubdio
You can identify it with something like its time value. Then use the condition block to determine if there is any such arrow (object) in the current or previous bar. Job done. -
RE: How do I use several buffers at the same time?posted in Questions & Answers
@clubdio
I think you should first figure out if the arrows are objects or buffers. In case of buffer, using the block "indicator is visible" can simply get what you want. -
RE: Is this a resolution to the error code=4806?posted in Bug Reports
I am not sure if 200 indicators in MT5 EA could work well (depend on PC speed), but my experience in MT4 is that some 10 indicators could make it freeze, crash and even file corruption.
-
RE: How to read Multi column and row CSV file and search each lineposted in Questions & Answers
If the CSV file is created by something like python scalping, maybe you could consider splitting it into 28 files, one for each symbol with the same filename. It then just needs a few line to get what you want
-
RE: Calculate the absolute value in the formula blockposted in Questions & Answers
Has you try using a conditon above as a filter by comparing the two variables?
-
RE: Martingale principlesposted in Questions & Answers
@Abade69 said in Martingale principles:
negative skewed risk-reward
I have some idea of negative skew, but how about negative skewed RR? Is it something we can measure?
-
RE: Protection EAsposted in General Discussions
@tec-nacks
FxDreema is for algo development. Some have belief (either real or delusional) that their brokers "steal" their money. May not be a good topic here. -
RE: Show TPposted in Questions & Answers
@NZEFILI
Check in Sell now and Buy now. Your variable "Close_Profit" seems misplaced.