You can, as long as both connected conditions are true at any point thy are connected, the AND block will pass.
Posts made by jstap
-
RE: AND Block Clarificationposted in Questions & Answers
-
RE: AND Block Clarificationposted in Questions & Answers
This is an example of how I use it: https://fxdreema.com/shared/x6emCuVde
-
RE: AND Block Clarificationposted in Questions & Answers
AND is effectively one block above another connected through orange (if this is true, and this is true connected through orange) pass onto the next via the orange dot, but sometimes you want to use a block being true and another being true from a different block in a different tree, to do something, so a AND block would work well.
-
RE: Problem Implementing Lot Size Reduction After Closing Oldest Tradeposted in Questions & Answers
I have never done this, but the close partially needs to go under a for each trade loop block.
-
RE: Check How many Bars Passedposted in Questions & Answers
when x> happens start counting, modify variable (one you have created) to 0, then once per bar add 1 to the variable, this will hold and update how many candles back when the cross happened.
-
RE: Check How many Bars Passedposted in Questions & Answers
When the cross happens count to candle ID's from that point, then check if < 10 now
-
RE: Draw Line on Oscillatorsposted in Questions & Answers
In a way using time is quite easy - was value < or > this on this candle, choose the candle by time.
-
RE: Yellow Dot Clarificationposted in Questions & Answers
Yes generally is if true use orange, if false use yellow.
-
RE: Draw Line on Oscillatorsposted in Questions & Answers
Mt4: https://fxdreema.com/shared/2lNuitAH
MT5: https://fxdreema.com/shared/HBzYhCO3Think you probably want something (like place a trade), to happen on your main chart when something happens... Place the indicator on the chart while testing
-
RE: Draw Line on Oscillatorsposted in Questions & Answers
You can draw in the indicator window, and you can get the current value or shift it by candle ID, decide which one and Ill show you what to do, so you will know how to work with others.
-
RE: MT5 Bucket of Closed Profitsposted in Questions & Answers
Buckets seem to fail in MT5, you will have to create using pink blocks.
-
RE: price value of horizontal line into a variableposted in Questions & Answers
so what's the name in the object list?
-
RE: price value of horizontal line into a variableposted in Questions & Answers
when you click on the object does it daw the line? Look in your object list, probably adding a number to the end, so object on chart won't fine it.
-
RE: price value of horizontal line into a variableposted in Questions & Answers
It does I have done this many times for years, add a shared link to look at.
-
RE: Constant font sizeposted in Questions & Answers
I know in MT code it would work, FX must be doing something different behind the scenes
-
RE: Constant font sizeposted in Questions & Answers
I think you are right in doing it in description, according to chatgpt:
input int SessionStartHour = 0; // *** Gold Star: Session Start Hour ***
input int SessionEndHour = 24; // *** Gold Star: Session End Hour ***
input int LookbackBars = 20; // *** Gold Star: Lookback Bars for High/Low *** -
RE: Constant font sizeposted in Questions & Answers
Putting three * * * without the spaces may do it, the bold text above was created with *'s added either side on normal text
-
RE: Constant font sizeposted in Questions & Answers
O I see, I do not know how you would do that in FX the heading text ETC is a string but I do not know how to bold it