And once you have those strategies with alerts, you are ready to automate the order execution in two minutes 🎉🎉🎉 ua-cam.com/video/EtliBJq-CRE/v-deo.html
Nice work. Is there a way to have one alert for many indicators? Not to merge the indicators but to have multiple inputs of indicators and their alert triggers(like buy, sell) then merge them to one alert that can be sent to MT4 or something with pine connect for example.
Yes you can do that now. Just find a script that integrates with pineconnect and add inputs for every indicator you want. You will need to modify the triggers based on the inputs but it’s definitely doable
Nice feature, can you help in code to show close near central pivot instead of ema crossover, i am getting error when is use assigned variable , thanks SK
Thanks for the video Paul. Is there a way you could show me how to get alerts for about 20 scripts when, in a 5 minute time frame EMA 5 is crossing over EMA 20. I am literally struggling with this. Any suggestion / code would be immensely helpful. Many thanks in advance
Up a certain percentile since when? //@version=4 study("My Script") lookback = input(1, "Lookback", tooltip="Price has changed since How many bars ago") pct = (close-close[lookback])/close[lookback] * 100 plot(pct, "Percent Change")
heys Paul since TradingView has a limit of 40 rows for table on screen, what other screener solution are out there for crypto coins? for example, I want to see volume > volume[1] but for Weekly candle for HUNDREDS of crypto coins! python ninjatrader? I suppose I can set hundreds of alerts on TradingView, but it's not practical solution!
First of all, thank you for your work, it was a very useful video. My question is: I wonder if there is a code that writes which coin or currency we are setting the alarm in the message section automatically? At the same time, it would be great if we could add whatever time period it is in. Thank you from now.
I managed to do this… there is a function in tradingview which allows you to modify the text of some return value. For example… if the code triggers on BTC… but your automation message need it to say BTCPerp or BTC_USD… you can use a function to change the “BTC” to anything else, such as “BTC_Perp”. I modified this videos code to do that so I could automate my trading strategy with 3commas. If you are still around, reply and I can go into more detail.
Hi, thank you for the endeavour to put so much info in this channel. Honestly I found your channel, by looking for some info about alerts, (I'm a noob). I'm try to put a conditionalert on a indicator that don't have but without success. Do you mind to help me?
ere. I am looking to buying one of your courses on Udemy. I want to learn pine script coding in order to create alerts and strategies with multiple conditions and multiple indicators. The strategy that I want to code involves using one indicator on top of another and use another indicator on top of that one. For example, initially plotting the RSI and then plotting the Stoch RSI with the source data from the RSI and not the closed. The Stoch RSI would have a few MA attach to it. There would be a StDev indicator with the source data from Stoch RSI with a few MA attached to it as well. My Question is: From your course in Udemy, will I be able to learn to set conditions for alerts and action strategies based on indicators with source data that is from another indicators in which its source data is also based on another indicator. Please let me know. Thank you.
IF condition is not working in my code. Giving error. if ta.crossover(ta.ema(close,10),ta.ema(close,20)) alert("A",freq=alert.freq_all) Syntax error at input 'alert'
17:30 multiple alerts
Paul you rock, my man!
I can proudly say you're an Awesome Mentor!
Thanks Ace!
I fricken love code man. I knew this was available and after a bit of digging I found this video. Well done my friend, well done.
man, super helpful. thank you!!
Fantastic!! I put multiple bot codes into 1 strategy after this video. Paul is awesome!
Very good to hear! You can even do more now with the new str.ing functions :)
Can you help me with this please I don't know to use this
And once you have those strategies with alerts, you are ready to automate the order execution in two minutes 🎉🎉🎉
ua-cam.com/video/EtliBJq-CRE/v-deo.html
Great technical detail. I'm already a fan. Thanks.
Excellent video
great content here
Great stuff Paul! Will need to see it a few more times though! Paul can you do a video on implementing ATR trailing stop loss?
Thanks! I will make a note of it and add it to my todo!
Can you help me with the alert which triggers when the price closes above the pivot point?
use the pivotPrice = pivothigh(10,10)
if crossover(high, pivotPrice)
alert()
Thank you an excelent one. Will love to see it updated to v5
Thank you! Working on it!
Nice work. Is there a way to have one alert for many indicators? Not to merge the indicators but to have multiple inputs of indicators and their alert triggers(like buy, sell) then merge them to one alert that can be sent to MT4 or something with pine connect for example.
Yes you can do that now. Just find a script that integrates with pineconnect and add inputs for every indicator you want. You will need to modify the triggers based on the inputs but it’s definitely doable
Nice feature, can you help in code to show close near central pivot instead of ema crossover, i am getting error when is use assigned variable , thanks SK
Is there a limitation to how many charts we can make an alert for using your method of creating one alert for all?
Max is 40 per indicator
Muito bom parabéns! Estou me esforçando, você deixa tudo mais simples mas a verdade e que esta difícil eu começar a programar
Can u help in Pne editor to write a code, thanks
Thanks for the video Paul. Is there a way you could show me how to get alerts for about 20 scripts when, in a 5 minute time frame EMA 5 is crossing over EMA 20. I am literally struggling with this. Any suggestion / code would be immensely helpful. Many thanks in advance
I want this for with the divegence alert can you help me ?
bro..need to create custom script alert..pls help
That was amazing!
Very useful 👌👌👌
Amazing!
fantastic
I'm trying to make alertcondition fire only when the price is up a certain percentile, does anyone know an example for this?
Up a certain percentile since when? //@version=4
study("My Script")
lookback = input(1, "Lookback", tooltip="Price has changed since How many bars ago")
pct = (close-close[lookback])/close[lookback] * 100
plot(pct, "Percent Change")
Thanks - great video
Wow! Brilly, baby!⭐❤
Can you make a video on using Dynamic Alerts in a Study with 40 symbols stored in a string array + ATR trailing SL? Thanks
Sounds like fun
how to setup alert() function when a new array is created
Is it possible to turn this into a strategy? I attempted it, but get errors which I can’t resolve.
I will gladly donate $500 in bitcoin if you can do a sequel to this video showing how to convert it into a strategy. 😂😂😂. Seriously… no joke.
If it is possible…
I tried to apply your explanation on the (ATR smoothed (By dysrupt)_BuySell Version) indicator, but I get a lot of errors. Can you help me please?
heys Paul
since TradingView has a limit of 40 rows for table on screen, what other screener solution are out there for crypto coins?
for example, I want to see volume > volume[1] but for Weekly candle for HUNDREDS of crypto coins!
python ninjatrader?
I suppose I can set hundreds of alerts on TradingView, but it's not practical solution!
thanks
First of all, thank you for your work, it was a very useful video. My question is: I wonder if there is a code that writes which coin or currency we are setting the alarm in the message section automatically? At the same time, it would be great if we could add whatever time period it is in. Thank you from now.
Thanks! Yea that is definitely possible. You would just need to pass the tickerid through your function and into your alert.
I managed to do this… there is a function in tradingview which allows you to modify the text of some return value.
For example… if the code triggers on BTC… but your automation message need it to say BTCPerp or BTC_USD… you can use a function to change the “BTC” to anything else, such as “BTC_Perp”. I modified this videos code to do that so I could automate my trading strategy with 3commas.
If you are still around, reply and I can go into more detail.
I'm looking for a coder are you available for hire?
Hi, thank you for the endeavour to put so much info in this channel. Honestly I found your channel, by looking for some info about alerts, (I'm a noob).
I'm try to put a conditionalert on a indicator that don't have but without success. Do you mind to help me?
When i used 'and' in the Stargate l strategy function of gives error
This is what i am going
Buy = golong and longfilter
Then go for if buy
Strategy.entry()
Need to post your error JAck
Gold Mine!
ere. I am looking to buying one of your courses on Udemy. I want to learn pine script coding in order to create alerts and strategies with multiple conditions and multiple indicators. The strategy that I want to code involves using one indicator on top of another and use another indicator on top of that one. For example, initially plotting the RSI and then plotting the Stoch RSI with the source data from the RSI and not the closed. The Stoch RSI would have a few MA attach to it. There would be a StDev indicator with the source data from Stoch RSI with a few MA attached to it as well.
My Question is:
From your course in Udemy, will I be able to learn to set conditions for alerts and action strategies based on indicators with source data that is from another indicators in which its source data is also based on another indicator.
Please let me know. Thank you.
Hello, How are you? Please, let me know if you can resolved multiple alerts with Stoch RSI. I'm really interested about this. Many thanks.
so many errors. Don't know what is wrong.
IF condition is not working in my code. Giving error.
if ta.crossover(ta.ema(close,10),ta.ema(close,20))
alert("A",freq=alert.freq_all)
Syntax error at input 'alert'