hi, i have a candlestick strategy, its a bit different to this, but all this coding is foreign to me. I'm completely lost. I'm looking for someone to help or give me a bit of a guide on how to create it or at least a website that would let me. please let me know if you're interested in working with me, or i'd take any advice you can give me on this
How could we make larger candle patterns dynamic? For ex: / / \ / \/\ /\/ \/ I’m creating a variable for the closes prices, pulling the last 10 (or so) closes, and programming that pattern with an IF statement. The problem is these patterns don’t come in a set amount of candles, it’s dynamic. Is there a way we can make it so that pattern could be recognized regardless of how many candles are in it?
Hi, you could create a list with 10 candle objects. this example save the last 10 candles into a list: df['10_candles'] = df.rolling(10).apply(list) Then you can write a function that analyses the 10 candles for patterns.
thank you sir nice video sir can you add money managment also and can you able to add martingale features or other method to recover the losses and when it will hit tp or sl it will print trade closed by tp or sl can you do it in next video
@@ATJTraders618 no I mean, the first candle will be red, the second candle will be engulfing, and the third candle will be green, and it will close in two days.
One of the best youtube channel on the topic. Congratulations!
Thank you!
Great work brother. I'm looking for another vdo soon.Thank you
hi, i have a candlestick strategy, its a bit different to this, but all this coding is foreign to me. I'm completely lost. I'm looking for someone to help or give me a bit of a guide on how to create it or at least a website that would let me. please let me know if you're interested in working with me, or i'd take any advice you can give me on this
How could we make larger candle patterns dynamic? For ex:
/
/ \ /
\/\ /\/
\/
I’m creating a variable for the closes prices, pulling the last 10 (or so) closes, and programming that pattern with an IF statement. The problem is these patterns don’t come in a set amount of candles, it’s dynamic. Is there a way we can make it so that pattern could be recognized regardless of how many candles are in it?
Hi, you could create a list with 10 candle objects.
this example save the last 10 candles into a list:
df['10_candles'] = df.rolling(10).apply(list)
Then you can write a function that analyses the 10 candles for patterns.
thank you sir nice video
sir can you add money managment also
and can you able to add martingale features or other method to recover the losses
and when it will hit tp or sl it will print trade closed by tp or sl
can you do it in next video
Sure thing. I myself am a bit sceptical about martingale... but as long as it helps you, I can do that. :)
we are waiting sir
i m learning a lot from you@@ATJTraders618
I liked that great video. How can we add more candlestick patterns like the Morning Star, Evening Star, and Doji?
Hi, using the methodology in the video, you simply have to define the logic how the candles are arranged.
@@ATJTraders618 Thankyou Brother I will try.
Sir , after writing a python code do you then insert it in meta editor ?
There are 2 options. You can either run it from your command prompt or run the script in MT5 on the chart. That is completely up to your preference.
you should put your credentials in a python env file 🙂
Hi Friend..... I am muthu from India... Any telegram link
We need three outside up candlestick pattern bot mt5
Hi, you mean 3 bullish candles in a row? :)
@@ATJTraders618 no I mean, the first candle will be red, the second candle will be engulfing, and the third candle will be green, and it will close in two days.