@ramos nice work, typically when projects are reusing blocks, sometimes information is just left in pieces when we cycle off of it to choose other settings of the block. Its best practice to always use a new block.
Posts made by TipsyWisdom
-
RE: builder doesn`t respondposted in Bug Reports
-
RE: builder doesn`t respondposted in Bug Reports
not sure, you probably have a whole lot of stuff going on?
-
RE: Here's a Preview of "The Matrix" EA (Over 300 lines of code)posted in General Discussions
lol...you just put a bunch of bullshit together.
-
RE: Custom indicator not working in MT4 backtesterposted in Questions & Answers
its probably not in the right folder. Replicate the indicator so it is in each kind of indi folder.
market, downloads, the main indicator folder, and examples...I think. If I remember right, its 4. Thats why I do to avoid problems.
-
RE: MY BACKTEST EA MT5 INDICATOR FREEZED Need Help Pleaseposted in Questions & Answers
@rustamryuji said in MY BACKTEST EA MT5 INDICATOR FREEZED Need Help Please:
I create custom indictor and when back test freeze,, please help
post project link
-
RE: Please help me outposted in Questions & Answers
Im not sure the logic you were going for here, but if you could ever point to C0 Close on a chart, I'd like to see it.

No such thing technically exists.
-
RE: comment blockposted in Questions & Answers
@robotman said in comment block:
@tipsywisdom C0? Candle ID 0?
Yes, C0 is current.
But you only asked for it once per day...well, its going to make a new high and new low more than once per day so I dont know how that logic is going to work. I think thats why I assumed you meant Yesterdays Candle info
-
RE: comment blockposted in Questions & Answers
hah, my bad...just change it to C0 then.
It will reset every time there is a new day with a new high or new low, just remove once per bar.
-
RE: EA not working - any suggestions?posted in Bug Reports
@wemail said in EA not working - any suggestions?:
My ea don't work who do i contact ???
The developer.
-
RE: None rapaint mql5 custom indicatorposted in Questions & Answers
@doubledee said in None rapaint mql5 custom indicator:
@Spenza42 it is a lagging indicator it only appears after price has moved towards certain direction maybe if you can put it on Candle ID 2 it will work if candle Id 2 is not working try candle ID 3 just test the indicator on a live demo market so you can trace as how many candlesticks it appears after
^
good call, its set to C0, its rare that you can concrete notifications at C0. Change CID to 1 will definintely help to see if there are any more issues....it may need C2. Never heard of that indi. -
RE: FIBONACCIposted in Tutorials by Users
PLEASE CAN SOMEONE HELP ME ON HOW TO MAKE USING FIBONACCI, I WANT THE 0.0 LEVEL OF THE FIBONACCI TO BE THE LOW OF THE PREVIOUS DAY WHILE THE 100.0 LEVEL SHOULD BE THE HIGH OF THE PREVIOUS DAY
surely there are plenty of resources for people asking for help with fibs and its been done 100 times in the forums. Instead of typing all that again, Id advise typing less and searching the forums for the word, "fib"
-
RE: Error message when compilingposted in Questions & Answers
probably exactly what Roar said.
But if you have an issue like this, it is probably specific to you. Problems like this can happen for anything.
-
RE: OrderCheck() failed: Unsupported filling mode (10030) [possibly solved?]posted in Bug Reports
does it work on backtest for USDCAD, and only has an issue with live funds?
-
RE: None rapaint mql5 custom indicatorposted in Questions & Answers
@spenza42 said in None rapaint mql5 custom indicator:
this is my project https://fxdreema.com/shared/GmKZLxw5c
i have this none repaint indicator for mt5 i want to create and EA using it but it doesn't work i have tried all the methods that i know still doesn't work help
does it not trade because of logic or because it can't properly detect the indicator to use so the EA is terminating?
-
RE: comment blockposted in Questions & Answers
@robotman said in comment block:
How can I store high n low current day at comment block, and reser it everyday?
- *create new variables *var1(ydayhigh) & var2 (ydfaylow)
once per bar, daily
modify variables like my picture

then go put var 1 in the first and var2 in the second.
Comment block below. done.
- *create new variables *var1(ydayhigh) & var2 (ydfaylow)
-
RE: What am I doing wrong?posted in Questions & Answers
haha. good luck. Messing with time in that specific of a way requires a lot of thought process to make sure it is logically sound.
Do oyu have a project link to your current effort?
-
RE: Average Open Price not work (DOGEUSD)posted in Questions & Answers
@duepips said in Average Open Price not work (DOGEUSD):
thank you but it seems that the base code of fxdreema is not complete and compatible, this blocks me from creating an EA with fxdreema ...
@realjoker said in Average Open Price not work (DOGEUSD):
Hello this can help you https://www.mql5.com/en/docs/predefined/_point Use that function to detect the points that the pair has, this would be a "complex" answer to make it easy, upload your link and tell me which broker you use, I'll solve it for you
dang...someone in the last few months developed a way to detect the pip size of the "current" asset for an oninit function...I think maybe the guys name was "quant" something..
perhaps a search of posts by that person might help you? I think it was @QuantEngineer its been a bit now. -
RE: Auto fib indicatorposted in Questions & Answers
@mgzfx said in Auto fib indicator:
a
search auto fib in tutorials, I have one in there somewhere. Or search for posts by me.
-
RE: Simple question but i dont know how to make itposted in Tutorials by Users
so much as setting an indicator for use in dreema is enough to make it pop up on your charts, so long as you have the same TF selected in settings and inputs, from the MT software screen.
upon completion of a test run on MT, the results will pop up at the end of the historical run.
-
RE: LOT Multiply Not Functionposted in General Discussions
if you are just adding positions as price moves, that is not martingale.
Are you doing a grid, with martingale style?
I.e., every 10 pips, up, buy, every 10 down sell. If last was a sell and it was a loss, now 2x the volume on the next buy or sell. TP every 10 pips.