Forum

Do renko charts use time or not?

Some people say that renko charts eliminate time, but on renko i know that after the price x, the market goes to price y. I have a notion of before and after, so my question, why it's not considered time? And if it's considered time, so we have 2 kinds of time on the markets, the original and the

Is it possible to reverse engineer a strategy using monte carlo or other methot except brute force?

Hi, i have a question about security, for example, if someone has a trading strategy with 5 indicators, out of more than 10000 indicators found on metatrader, the different brute force combinations for testing are 832500291625001500, (according to numberempire com) which even the fastest computers

There is a very good pattern in the markets

It works even with simple and common indicators, you just have to think in the movements like up, down, up, down, like a snake ... The advantage is that you always have a trade and know the direction of the trade. This picture bellow prove that markets behave like waves

There is a difference in probability between 2 different gains?

Some people say that at any given time, the probability for the price, for example, to go up 10 pips, or go down 10 pips, is 50% for each side, right? But what's the probability at any given time, for example, that the price will move for example only 2 pips up and 10 pips down? Is 50% too? Thanks

The money management formula that i use

(updated) I came up with this money management system after several searches, this field is very important and kind of neglected, if you have a good strategy but don't have money management, you don't have a plan, here is the tutorial of the system: Advantages: - it tells you how much to invest

Need help to create image to fill all the background chart

#property indicator_chart_window #property strict string filename = "\\Images\\alpha.bmp" ; int start () { ObjectCreate ( 0 ,filename, OBJ_BITMAP_LABEL , 0 , 0, 0 ); ObjectSetString ( 0 , filename, OBJPROP_BMPFILE , filename ); ObjectSetInteger ( 0 ,filename, OBJPROP_XDISTANCE , 100 );

How can i remove specific letters from a string?

Hi, please someone can help me to remove letters from words in a string ? thanks for any help string one = "one" ; double value_to_remove= - 1 ; // this number will remove letter from words, -1, remove 1 letter string on = " " ; - QUESTION - How can i make ON string become "one" - 1 letter, = "on"

There is a problem with money management teachings

Some people say that one should not invest more than 2% of total balance, but why it's 2%, not 3 or 4? This 2% rule is not a formula, because every formula does not work if you change the constants. So we can say that this 2% rule is only an arbitrary number, and other people just repeated it. We

Is it possible to include entire folders to the code?

If you have to include files, you need to use #include one file by one, but is it possible to use a single line code and automatically include all include files inside a folder? thanks