| hballa 36 posts
 msg #161212
 - Ignore hballa
 | 7/11/2024 4:20:25 PM 
 Hi,
 I found this script in forums (written by WALLSTREETGENIUS, thanks), it looks good, wanted to modify the script to capture stocks before they explode, example TSLA, META and ARM. I observed they exploded above 200 EMA. I tried to modify, but no luck. Really appreciate your help.
 
 ==============Script================
 close is above 20
 close is below open
 RSI(2)is above RSI(2)2 days ago
 and RSI(2)is decreasing 1 day
 Set{Bullpower, high minus ema(13)}
 Set{Bearpower, low minus ema(13)}
 set{BLb,days(BullPower is above BullPower 1 day ago,100)}
 set{BLa,days(BullPower is below BullPower 1 day ago,100)}
 set{BLxBL, BLa - BLb}
 set{BRb,days(BearPower is above BearPower 1 day ago,100)}
 set{BRa,days(BearPower is below BearPower 1 day ago,100)}
 set{BRxBR, BRa - BRb}
 Draw Bullpower
 Draw Bearpower
 add column BLxBL
 add column BRxBR
 Draw Bullpower
 Draw Bearpower
 
 set{newPlot, cema(close,3)} on plot price
 and draw cema(close,5) on plot price
 and draw cema(close,15)on plot price
 and draw cema(close,30)on plot price
 and draw cema(close,50) on plot price
 and draw cema(close,100) on plot price
 and draw cema(close,200) on plot price
 and ema(15)is above ema(30)
 average volume(90)is above 1000000
 sort column 2 descending
 offset 3 days
 ===================
 I observed these time frames before they exploded.
 ===TSLA===
 Jun 25 - Jun 28
 ===META===
 Dec 8 - Dec 13
 Jan 8 - Jan 16
 ===ARM====
 Feb 1 - Feb 6
 May 21 - May 24
 
 
 |