Search found 27 matches

Go to advanced search

by EveryDayBetter
Sat Apr 16, 2022 9:03 am
Forum: Request Scripts
Topic: How to replace the strategy in this 40 alert script?
Replies: 2
Views: 1442
 
Jump to post

Re: How to replace the strategy in this 40 alert script?

Thank you for your answer. I need a script which can give me 40 alerts for 40 securities. In the script it works, and I'm not able to code a script with this function. Do you have any idea how to do?
by EveryDayBetter
Tue Apr 12, 2022 2:21 pm
Forum: Request Scripts
Topic: How to replace the strategy in this 40 alert script?
Replies: 2
Views: 1442
 
Jump to post

How to replace the strategy in this 40 alert script?

Hello, I'm looking a long time ago for somebody who could help to replace the breakoutstrategy in this script with a simple pullback strategy. //@version=5 strategy("Screener 1 BreakoutFinder that works", overlay=true, max_bars_back=4000) // General Function f_barssince(_cond, _count) => _barssince ...
by EveryDayBetter
Sun Apr 03, 2022 6:11 pm
Forum: Pine Script Q&A
Topic: How to move a signal more below in the chart?
Replies: 1
Views: 1712
 
Jump to post

How to move a signal more below in the chart?

Is it possible to get the green cross (signal) above the red cross to the psoition of the red cross? That can be 2 or three percent under the bar. drawShape = false if CONDITION IS FULFILLED drawShape := true plotshape(drawShape, color=#FFFF00, location=location.belowbar) https://i.imgur.com/DAgjZLM...
by EveryDayBetter
Fri Apr 01, 2022 9:37 pm
Forum: Pine Script Q&A
Topic: How to define as another buy condition, that there wasn't made a trade in this stock in 40 days?
Replies: 2
Views: 800
 
Jump to post

Re: How to define as another buy condition, that there wasn't made a trade in this stock in 40 days?

Yes, thank you for the hint. I've put my thoughts in order ;) Is this better for understanding? Relevant is only the "ANOTHER BUY CONDITION" sma50 = ta.sma(close, 50) sma150 = ta.sma(close, 150) plot(sma50, color=color.new(#000000, 0), linewidth=4, title='SMA 50') plot(sma150, color=color.new(#76EE0...
by EveryDayBetter
Thu Mar 31, 2022 6:58 pm
Forum: Pine Script Q&A
Topic: How to define as another buy condition, that there wasn't made a trade in this stock in 40 days?
Replies: 2
Views: 800
 
Jump to post

How to define as another buy condition, that there wasn't made a trade in this stock in 40 days?

How is it possible to define it as another buy condition, that there wasn't made a trade in this stock in X days? For instance X = 40
by EveryDayBetter
Tue Mar 22, 2022 10:22 pm
Forum: Pine Script Q&A
Topic: How to open a trade (strategy) when the price increases more than 1 Percent in a day?
Replies: 2
Views: 660
 
Jump to post

How to open a trade (strategy) when the price increases more than 1 Percent in a day?

How can I define, that the strategy opens a trade, when the price increases more than 1 Percent in a day?
by EveryDayBetter
Fri Mar 18, 2022 9:15 am
Forum: Pine Script Q&A
Topic: How is it possible to upgrade this script to version 5?
Replies: 2
Views: 1094
 
Jump to post

How is it possible to upgrade this script to version 5?

The indicator the the Elder Impulse System. The version it is not known. study(title="Elder Impulse System", shorttitle="Elder Impulse", overlay=true) source = close // MACD Options macd_length_fast = input(defval=12, minval=1, title="MACD Fast Length") macd_length_slow = input(defval=26, minval=1, ...
by EveryDayBetter
Wed Mar 09, 2022 8:09 pm
Forum: Pine Script Q&A
Topic: How can I avoid the error: "The alert is triggered too often"?
Replies: 1
Views: 736
 
Jump to post

How can I avoid the error: "The alert is triggered too often"?

Hello. How can I avoid the error "The alert is triggered too often", when I wanna get alerts from the following script? Are there mistakes in the script? //@version=5 strategy("US stocks 1 - Pullback SMA 50 Screener ", overlay=true, max_bars_back=4000) // General Function f_barssince(_cond, _count) ...

Go to advanced search