can you show what you are talking about? I use those blocks a lot and have never experienced anything like that.
Posts made by TipsyWisdom
-
RE: Comment (ugly) block doesn't work on MT5posted in Bug Reports
-
RE: How much is TOO much?posted in Questions & Answers
honestly, ive put a lot less time into development and more into manual trading...so these are things I just come back and randomly ponder mostly these days @gooseman
maybe @ me in that thread and I may be able to recall on the project and compare to help you.
-
RE: How much is TOO much?posted in Questions & Answers
@gooseman said in How much is TOO much?:
https://fxdreema.com/shared/PNG9D7p4e
not the main project but a sample. regardless, it's just one system copied many times using different group #s, timeframes, and symbols.
id try manually doing 2 groups and see if you still have the same problem as when you are copying and pasting.
outside of that, id assume usually a variable or constant naming issue is another common thing.
-
RE: MA strategy with RSI+MAposted in Questions & Answers
What you are asking is a variable questions with so many variable answers that are possible. So many ways to achieve the simplest idea of what you marked, but we are not negotiating a means of making marks. it seems you are asking for how to trade it? I am not even really sure of what you are asking. lol
-
RE: When to stop OnInit()posted in Bug Reports
@jstap lol
true true...but a business partner shouldn't be any different in that regard!
-
RE: When to stop OnInit()posted in Bug Reports
@speedsk8r said in When to stop OnInit():
@fxDreema I'm really glad you don't like partners. Partners always have interests that conflict with a best and first vision. One of the reasons FXDreema is ahead of its peers. Creative license for users or devs doesn't play well with controlling partners. You don't need em because its pretty easy to see your user base will have your back with any kind of support needed. I am currently a novice in coding and find this community easy to learn and share ideas with. I wouldn't be here if this were a big box e-tailor. Ive been a trader and in tech for years but I'm soaking it in like a sponge right now!
to be fair as well though, a good partner pushes you to be better, and strive for more....this is what I look for in someone at least.
-
RE: Can someone give me 10 minutes to make an indicator ?posted in Questions & Answers
i would start proving 1 step at a time first.
-
RE: EA backtesting on MT5posted in Questions & Answers
If you copied and pasted blocks without understand everything that needs to be changed, converting to 5 from 4, that may be the issue.
Share your project link for assistance.
-
RE: Rule to not allow trading in specific currencies, how to do it?posted in Questions & Answers
@ontradingx said in Rule to not allow trading in specific currencies, how to do it?:
I would like to know if someone can show me how to create these rules, for example:
-
If I have a purchase in the EURUSD currency, then I cannot have another purchase in the USDCHF currency.
-
If I have 1 trade in EUR currency then I cannot have other trades in currencies that start with EUR.
-
If I have 1 trade in EURUSD currency then I cannot have other trades with any currency that contains EUR or USD.
Can you help me?
I have ideas, but you'd have to use strings...
-
-
RE: Exit after certain higher highs and lower lowsposted in Questions & Answers
it sounds as if you will want to use the zigzag indicator to determine the HH and LL as you were seeking originally.
use the modify variables block to then define what the variables will be.
var 1 is HH1, var 2 is LL1, var 3 is HH2, and var4 is LL2
within the modify variables block specifically now, you will select each of those variables and then define each like this:
var1 = indicators (zigzag, mode HH, ID0)
var2 = indicators (zigzag, mode LL, ID0)
var3 = indicators (zigzag, mode HH, ID1)
var4 = indicators (zigzag, mode LL, ID1)I think thats about all you would need to define what you're seeking.
to verify, put a comment block under once per bar (1 minute), and draw a horizontal line that is redrawn at the value of each variable. -
RE: CAN WE USE condition for Side waysposted in Questions & Answers
very interesting thought...never thought to try to do consoldation in this manner. Defining a range in time, use a variable as range of price for that time. If price is below X range of pips, or whatever metric you use...dont trade the current candle until we've broken out of the range high and low, or broken out of the range in terms of movement in a candle....nice
-
RE: How to use Constant for Timeframeposted in Questions & Answers
period current is the default that we all use regardless of what we want to use. Reason being, its easy to remember...what isn't easy, when you're in the heat of the moment...got on some tunes and you're cranking out some blocks, and you brain fart and say, "damn, was M1 or Month or Minute." This is why he said to just use period current, its a moot point because its selectable as an input later on.
-
RE: Multi symbols how to use correctly?posted in Questions & Answers
Can you comparatively help me understand what you mean by, it pollutes the structure?
I am assuming you mean the blocks, the code...making it all work together properly. I personally do not use group numbers because its too much to do for what I develop. Is this the kind of pollution you are talking about? Or is it more of a code aspect, in the lines?
-
RE: Why dont candle (0) cross entries work??posted in Questions & Answers
if yo uhave your conditions under once per bar, then it only looks for the conditions at the start of the bar.
-
RE: Period High / Low. Variable issue?posted in Bug Reports
@l-andorrà said in Period High / Low. Variable issue?:
@tipsywisdom You shouls use the lowest candle ID nubmer for the start and the highest one for the endind period. I'm not sure the way you are showing is making he block to work correctly.
haha...i think you are right. the way I was laying out my logic, it was supposed to be this way, but to use it correctly, ill need to do it the correct way.
-
RE: Multi symbols how to use correctly?posted in Questions & Answers
@ontradingx said in Multi symbols how to use correctly?:
@tipsywisdom you have tutorial by this, share the link here please ?

in the future, that is how to do it for anyone else simply.
https://fxdreema.com/forum/topic/14971/multi-symbol-high-of-day-low-of-day-tracking
-
RE: YESTERDAY HIGH AND LOW CUSTOME INDICATORposted in Questions & Answers
@lekan4forex start by using a comment block to display the high and low of yesterday. That is a very easy task.
-
Period High / Low. Variable issue?posted in Bug Reports

I frequently use all of these things there should be no reason that its not modifying my variables and at least updating the comment. I tried with and without pass block, forcing once per minute, displaying the comments different. It never updates.
I also just tried converting everything to int, still no.

-
RE: YESTERDAY HIGH AND LOW CUSTOME INDICATORposted in Questions & Answers
why not use the daily candle itself instead of an indicator?
modify variables block.
var1 = candle 1 high, daily.
var2 = candle 2, low, daily.