Requests & Ideas - page 551

 
Why dont take the strategy to a whole new way of thinking ? 
A few beers should help me to come to a final result ! ;) 

Have a great weekend to you all ! :) 
 
timmyhanke:
Why dont take the strategy to a whole new way of thinking ? 
A few beers should help me to come to a final result ! ;) 

Have a great weekend to you all ! :) 
Oha, what a funny new hobby you have there :D
 
krelian99:
Oha, what a funny new hobby you have there :D
The monster continues , Its a great way to mess up your floor so you dont have to clean it.
And a good way to always see the problem and a solution in front of you.
So its always there to annoy you and for you to correct any time of the day :) 
 
timmyhanke:
The monster continues , Its a great way to mess up your floor so you dont have to clean it.
And a good way to always see the problem and a solution in front of you.
So its always there to annoy you and for you to correct any time of the day :) 
2016.05.21 #5518
timmyhanke:
Why dont take the strategy to a whole new way of thinking ? 
A few beers should help me to come to a final result ! ;) 

Have a great weekend to you all ! :) 

Oha, what a funny new hobby you have there :D

==========================================================================

but here i see every thing empty,no beer,no second seat for ......... no strategy on board even no single EA on table,from the hundreds you made since in few weeks.....looks you are taking rest for to get ready and refresh your self for a new unknown battle field in forex.

 
mntiwana:
2016.05.21 #5518

Oha, what a funny new hobby you have there :D

==========================================================================

but here i see every thing empty,no beer,no second seat for ......... no strategy on board even no single EA on table,from the hundreds you made since in few weeks.....looks you are taking rest for to get ready and refresh your self for a new unknown battle field in forex.

If you think that you have tried everyting and still fail to pursue your dream , start thinking : what am i missing in my way of thinking ? 

If you have tired everything and still fail , then you obviously have answers what you cant do.
If you list everything that works agains you and start thinking of a way to clear every fault that you can think of.
Its like if you had the ability to relive life , and your life was to get through a mine filed , you would make steps that were a mistake , but soon the mines that you already stept on are gone , and all you have to do is just to continue until you reach your goal ! :) 
 
mladen:
Post your coders code which he is using to access indicators values, and I will then post a a correction (if needed) of that code part

Thanks mladen! My coder replies:

Okay, here is the code snippet used for indi's access:


         Up=iCustom(_Symbol,PERIOD_CURRENT,"::Indicators\\Averages ribbon 2_7.ex4"
                    ,0    //Timeframe
                    ,0    //Custom TF
                    ,FastMaPeriod
                    ,MODE_SMA    //MA Method
                    ,FastMAPrice
                    ,DoubleSmoothedFastAverage
                    ,AdaptiveFastAverage
                    ,SlowMAPeriod
                    ,MODE_SMA    //Slow MA Method
                    ,SlowMAPrice
                    ,DoubleSmoothedSlowAverage
                    ,AdaptiveSlowAverage
                    ,Filter
                    ,0    //Display type
                    ,3    //Lines Width
                    ,1    //BarWidth
                    ,false//Turns alert on
                    ,false//Alerts on current
                    ,false//Alert should pop up
                    ,false//Alert plays a sound
                    ,false//push
                    ,false//mail
                    ,159  //Arrow code up
                    ,159  //Arrow code down
                    ,0.5  //Gap arrow up
                    ,0.5  //Gap arrow down
                    ,true //Arrow on first bars
                    ,0    //Average shift
                    ,0    //Interpolation
                    ,4    //Indicator value 5
                    ,1    //Shift
                    );


(Sorry if I make many posts, its not purposely. It just sometimes I see the post right away, and sometimes not.)
 

Hi

It is possible to confirm the order buy or sell after the signal only if the candle reach x pips?
Example
if op = openbuy
{If candle > xpips
{ordersend
}

Thank you
Rogério

 

Dear mladen,

I really hope you want to update this indicator

Please...

 
NKTrade:

Dear mladen,

I really hope you want to update this indicator

Please...

NKTrade

What update do you have in mind (since,as far as I see, there are no compatibility issues)?

 
borgesr:

Hi

It is possible to confirm the order buy or sell after the signal only if the candle reach x pips?
Example
if op = openbuy
{If candle > xpips
{ordersend
}

Thank you
Rogério

Rogério

Of course that you can

For example, like this :

if ((High[candleNo]-Low[candleNo])/(_Point*MathPow(10,MathMod(_Digits,2))) > xpips)
Reason: