somewhere in forum was my reply to "fisher transform non repaint", but I really dont know where
.. it is probably the same indicator as you wish (but without repainting) ... this one what you postet is repainting ... somebody here it helped, ask him but you need find it 
Posts made by miro1360
-
RE: Custom indicator does not work.posted in Questions & Answers
-
RE: Can you create Indicators using FxDreema?posted in Questions & Answers
export is allways as expert, not indicator ... so your files must goes into experts folder ...
-
RE: Help with My Indicatorsposted in Questions & Answers
this must @fxDreema check ...
I see now ...this one go only manually importing, in log are not errors, but I think buffers are not reacting
weird ...
...
if you will try .. -
RE: Best way to display a text message on the chart?posted in Questions & Answers
draw text, comment, etc ...
-
RE: Custom indicator does not work.posted in Questions & Answers
I added in code buffer0 visible, because this is main buffer from which are colors created (colors are stored in next two buffers) ... it are few lines of code, compare indicators between to see differences ...
-
RE: Help with My Indicatorsposted in Questions & Answers
try import into indicators this modification
0_1486657327346_arbitrage_ea.mq4 -
RE: Custom indicator does not work.posted in Questions & Answers
0_1486656370166_tete01.mq4
here you can now working with first buffer from this indicator (yellow color) ... -
RE: Variable issue when running EA on multiple pairsposted in Questions & Answers
sorry
I was talking about these:

I had in answer meaning "local" as in project, but yes they are "global" too but only for project ... there are another global for whole metatrader .... -
RE: Variable issue when running EA on multiple pairsposted in Questions & Answers
are you using global variables?
use instead of them local variables:

... -
RE: Arrows and Lines on my chartposted in Questions & Answers
what is your EA? can you send screenshot of blocks how are they connected?
...
and multilanquage support is question for admin, maybe he can tell more about @fxDreema -
RE: Open a trade with 3 indicators crossing and close with one crossing againposted in Questions & Answers
with this I dont know help you, maybe somebody find solution ... but this parabolic sar indicator -- it also sometimes repaints on first closed candle and it can be problem ...
-
RE: Two indicators at the same timeposted in Questions & Answers
once per bar
condition 1
condition 2
do somethingyou can connect one block after another ...
-
RE: Custom indicatorsposted in Questions & Answers
check tutorial and examples and help section ...
https://fxdreema.com/help/working-with/custom-indicators -
RE: The "Adjust" button inputposted in Questions & Answers
flag is for memorize state
... for memorize candles counting you can use variables ...
... I dont know how to explain to you this problem because for it you need know more stuffs ... for completing your project 100% take hours ... but here is simple example how to count candles:
this opens buy trade every 5 hours (every 5 hour candles):https://fxdreema.com/shared/pYx0Q2TOd

this is variable:

and this one is the same, but alternate between buy and sell using flags:
https://fxdreema.com/shared/32oc3KFab


-
RE: Tutorial 04 - EMA cross, part 4 - more Buttons [beginners]posted in Tutorials by Users
try this hint from Dandy:
https://www.youtube.com/watch?v=NMLJ6qwaQ9Min fxdreema give in custom code block this code:
for(int i=50;i>0;i--)
{
Comment(i);
}50 you can give into Inputs like
int speed 50and your code in Custom code block will be:
for(int i=speed;i>0;i--)
{
Comment(i);
} -
RE: The "Adjust" button inputposted in Questions & Answers
I think, this need a lot of Flags and other comparison stuffs to "memory state" where EA is now and what to do next


-
RE: Help! ATR entryposted in Questions & Answers
can you post shared link how are your blocks connected?
-
RE: Very basic stochastic problemposted in Questions & Answers
this is another version with crosses:

btw. probably you have reversed main with signal (or cross direction) ..
-
RE: buy/sell expiry option in mq5/ex5 projectsposted in Questions & Answers
and what is your problem exactly?
