Row mode in the Bulls in a Row block specifies how the block counts consecutive candles that meet a specified condition. There are two options for row mode:
True: Counts consecutive candles from the current candle to the past.
False: Counts consecutive candles from the current candle to the future.
Candle ID in Bulls in a Row Block:
The Candle ID input in the Bulls in a Row block allows you to specify the candle on which the block should start counting consecutive candles. This is useful when you want to count consecutive candles from a specific point in time or from a specific candle pattern.
Best posts made by JamieCisneros
-
RE: What is row mode in bulls in a row block?posted in Questions & Answers
Latest posts made by JamieCisneros
-
RE: mt4 is going to be out of use in the global market soon?posted in Questions & Answers
That's pretty frustrating. I faced something similar when my broker switched platforms. I found a solution by checking out https://www.earnforex.com/forex-brokers/, which helped me find brokers still supporting MT4/MT5.
As for copying trades from MT4 to DXTrader, you might need a trade copier EA. Unfortunately, I haven't found a platform like fxDreema for DXTrader yet. It's tough to say if this is the end for MT platforms, but it does seem like more brokers are moving on. -
RE: Ea para dos graficosposted in Questions & Answers
What you're looking for is like having a "trading assistant" that can handle multiple currency pairs and their indicators at the same time. I remember trying something similar in the past, where I set up an EA to analyze different currency pairs simultaneously. It worked like a charm, like having a team working for you while you enjoy your morning coffee.
-
RE: Add operations (or lots) to the open operationposted in Questions & Answers
When you're tinkering with your trading setup, look for the "If/Then" block in your automation platform. This nifty tool acts as your trading buddy, following your commands. Set it up to say, "If operation hits profit, then initiate new operation with same take profit."
-
RE: Builder is very slow today :(posted in Bug Reports
Once, when I was working on a project, I ran into a similar issue. Turns out, there was maintenance happening in the background that wasn't announced. I reached out to support and they confirmed it. I'd suggest shooting them a quick message just to double-check.
-
RE: RSI cross x> 30 and 2 round to buy ?posted in Questions & Answers
Well, you seem to be trying to set up a trading strategy based on RSI crosses and rounding numbers. If I understand correctly, you want to buy when RSI crosses above 30 and rounds to 2? For the condition where RSI crosses once but doesn't buy, you should specify additional criteria or refine your logic. Double-check your code for any errors or inconsistencies in the conditions.
-
RE: take profit as object on chartposted in Questions & Answers
Hey! You can take the unrealized take profit block and convert it into a dynamic horizontal line for your grid system on the chart. You'd need to extract the take profit value and then plot it as a horizontal line at that level on your chart. This can help you visualize potential profit targets within your grid system.
-
RE: trim opposite lot sizeposted in Questions & Answers
Hey. To adjust the lot size of the sell position when the buy take profit is hit, you can use the PositionGetDouble(POSITION_VOLUME) function to get the current volume of the sell position, then calculate half of it and use PositionSetDouble(POSITION_VOLUME) to update the volume accordingly. Hope I helped!
-
RE: Sum of many variables.posted in Questions & Answers
Hello. You can just replace var1, var2, etc., with your actual variable names, and add them together using the + operator. Hope this helps.
-
RE: Error with creating mq5 or ex5 with existing fxdreema eaposted in Questions & Answers
Hi. One thing that worked for me was double-checking the block models in the code. Even a tiny typo can throw the whole thing off.
-
RE: Hello, how can I implement Hidden Divergence? Because this site only has normal divergenceposted in Questions & Answers
Hi. What worked for me was manually coding it into my trading strategy using platforms like TradingView or MetaTrader. It's a bit more hands-on, but once you get the hang of it, it becomes second nature. There are plenty of tutorials online to guide you through the process.