• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • User/Email: Password:
  • 4:08pm
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 4:08pm
Sister Sites
  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Options

Bookmark Thread

First Page First Unread Last Page Last Post

Print Thread

Similar Threads

Trying scalping with a 1000 bucks - Scalping is expensive! 39 replies

1M & 5M Scalping System (Scalping Paradise) 21 replies

GBPUSD RSI scalping strategy EA? 3 replies

Blackdiamond System - Awesome scalping system (Coding Reqd) 9 replies

RSI, MA, BOLL or RSI, BOLL MA diferents results 2 replies

  • Trading Systems
  • /
  • Reply to Thread
  • Subscribe
  • 160
Attachments: RSI 50 X Scalping System
Exit Attachments
Tags: RSI 50 X Scalping System
Cancel

RSI 50 X Scalping System

  • Last Post
  •  
  • 1 8910Page 1112 13
  • 1 10Page 1112 13
  •  
  • Post #201
  • Quote
  • Mar 15, 2023 6:37am Mar 15, 2023 6:37am
  •  reteid2222
  • Joined Aug 2015 | Status: Member | 2,520 Posts
"I'm using ATR , Look Back For High/Lows Candles to find SL & TP"
For what is atr if you look for high low candles for sl tp?


Quoting mr.smil3
Disliked
{quote} Stuff done, created simple Strategy Backtest Script in TV. (I'm using ATR , Look Back For High/Lows Candles to find SL & TP) Seem good winrate with date range 01-Mar -> Now, totomagic! (But date range of backtest is very limited, because i don't have a PRO+ account in TV) Reference video: https://youtu.be/Cvy04iK_Yto {image} {image} {image} {image}
Ignored
Vucking good EA coder...
 
 
  • Post #202
  • Quote
  • Mar 15, 2023 8:06am Mar 15, 2023 8:06am
  •  Outcast918
  • | Joined Jul 2022 | Status: Member | 21 Posts
Quoting pelagiusz
Disliked
{quote} Jesus,but what do you mean? Will you be mentally unstable if you don't find out right away? read carefully because there is information, come back from work and watch the video easy. What a mindset xDD {image}
Ignored
Wait, who are you again? 😂
 
 
  • Post #203
  • Quote
  • Mar 15, 2023 8:17am Mar 15, 2023 8:17am
  •  Eagle-Eye
  • | Joined Nov 2017 | Status: Member | 208 Posts
Quoting mr.smil3
Disliked
{quote} {quote} I'm forked original indicator script to easy follow this logic, hope this helps. {image} {file}
Ignored
Hello,

I'm new with tradingview. Does this script alerts when cross happens? Does it look for cross and alert on all pair I have in watch list or just one that is open on chart?

Thank you!
 
 
  • Post #204
  • Quote
  • Mar 15, 2023 10:55am Mar 15, 2023 10:55am
  •  mr.smil3
  • | Joined Aug 2021 | Status: Member | 15 Posts
Quoting Outcast918
Disliked
{quote} but I would just like to know on the method you SL and TP
Ignored
Quoting reteid2222
Disliked
"I'm using ATR , Look Back For High/Lows Candles to find SL & TP" For what is atr if you look for high low candles for sl tp? {quote}
Ignored
Hey, I demonstrated how to achieve SL & TP in my backtest
Maybe, use minimum value of two method (entry price or lookback Lows & Highs) is best choice
Attached Image(s) (click to enlarge)
Click to Enlarge

Name: SL_TP_Sample_EntryPrice.png
Size: 73 KB
Click to Enlarge

Name: SL_TP_Sample_LookBack.png
Size: 75 KB
 
 
  • Post #205
  • Quote
  • Mar 15, 2023 11:11am Mar 15, 2023 11:11am
  •  mr.smil3
  • | Joined Aug 2021 | Status: Member | 15 Posts
Quoting Eagle-Eye
Disliked
{quote} Hello, I'm new with tradingview. Does this script alerts when cross happens? Does it look for cross and alert on all pair I have in watch list or just one that is open on chart? Thank you!
Ignored
1. No, you must setup alert condition in TV
(See images sample)

2. Just one , you need to setup alert each of pair
Attached Image (click to enlarge)
Click to Enlarge

Name: TV_Alert.png
Size: 38 KB
 
 
  • Post #206
  • Quote
  • Mar 15, 2023 3:27pm Mar 15, 2023 3:27pm
  •  Outcast918
  • | Joined Jul 2022 | Status: Member | 21 Posts
Quoting mr.smil3
Disliked
{quote} 1. No, you must setup alert condition in TV (See images sample) 2. Just one , you need to setup alert each of pair {image}
Ignored
Hello,

I can confirm that the indicator repaints, but its awesome if we can get the original one it have the cross over detection with the vertical lines.

Original Indicator script that's suggested by OP

-------
study("Multi Timeframe RSI", shorttitle="MTF_RSI")
len = input(14, title="Length", type=integer)
src = input(close, title="Source", type=source)
show5m = input(true, title="show 5m", type=bool)
show15m = input(true, title="show 15m", type=bool)
show30m = input(true, title="show 30m", type=bool)
show1h = input(true, title="show 1h", type=bool)
show2h = input(true, title="show 2h", type=bool)
show4h = input(true, title="show 4h", type=bool)
show1D = input(true, title="show 1D", type=bool)

rsiCurrent = rsi(src,len)
rsi5m = security(ticker,"5",rsi(src,len))
rsi15m = security(ticker,"15",rsi(src,len))
rsi30m = security(ticker,"30",rsi(src,len))
rsi1h = security(ticker,"60",rsi(src,len))
rsi2h = security(ticker,"120",rsi(src,len))
rsi4h = security(ticker,"240",rsi(src,len))
rsi1D = security(ticker,"D",rsi(src,len))

plot(rsiCurrent, color=red, title="RSI current")

plot(show5m ? rsi5m : na, color=interval < 5 and not isdaily and not isweekly and not ismonthly ? #aaaaaa : na, title="RSI 5m")
plot(show15m ? rsi15m : na, color=interval < 15 and not isdaily and not isweekly and not ismonthly ? #999999 : na, title="RSI 15m")
plot(show30m ? rsi30m : na, color=interval < 30 and not isdaily and not isweekly and not ismonthly ? #888888 : na, title="RSI 30m")
plot(show1h ? rsi1h : na, color=interval < 60 and not isdaily and not isweekly and not ismonthly ? #777777 : na, title="RSI 1h")
plot(show2h ? rsi2h : na, color=interval < 120 and not isdaily and not isweekly and not ismonthly ? #666666 : na, title="RSI 2h")
plot(show4h ? rsi4h : na, color=interval < 240 and not isdaily and not isweekly and not ismonthly ? #555555 : na, title="RSI 4h")
plot(show1D ? rsi1D : na, color=not isdaily and not isweekly and not ismonthly ? #444444 : na, title="RSI 1D")
 
 
  • Post #207
  • Quote
  • Mar 15, 2023 4:54pm Mar 15, 2023 4:54pm
  •  totomagic
  • | New Member | Status: Member | 84 Posts
Quoting mr.smil3
Disliked
{quote} {quote} I'm forked original indicator script to easy follow this logic, hope this helps. {image} {file}
Ignored
you're a legend brother! This is exactly what I was trying to do..i'm not great with coding haha

the signal appears one bar after signal which is perfect, and i'm not noticing any repainting. This works well and really appreciate your work.
 
 
  • Post #208
  • Quote
  • Mar 15, 2023 4:56pm Mar 15, 2023 4:56pm
  •  totomagic
  • | New Member | Status: Member | 84 Posts
oh, i am experiencing some repainting on some of the signals ...but not everyone..wonder why
 
 
  • Post #209
  • Quote
  • Mar 15, 2023 5:00pm Mar 15, 2023 5:00pm
  •  totomagic
  • | New Member | Status: Member | 84 Posts
Quoting mr.smil3
Disliked
{quote} 1. No, you must setup alert condition in TV (See images sample) 2. Just one , you need to setup alert each of pair {image}
Ignored
I think the difference is coding with gaps or without gaps


The 'Gaps' setting specifies the behavior when the indicator's timeframe is higher than the chart's. When 'Gaps' is checked, higher timeframe values only come in and are interconnected on the chart when the higher timeframe completes. For example, an indicator with "1 hour" as its timeframe displayed on a minute chart will only return a value once in 60 bars, i.e., when the hourly bar closes and the value is confirmed. This has the advantage of avoiding repainting in real-time. The values will be visually connected by a line, but no data will be actually present between them.
If 'Gaps' is unchecked, historical gaps are filled with the last returned value. On real-time bars, the last available value will be returned on every tick, allowing you to track the real-time development of the indicator's values. With this setting enabled, the indicator will produce non-repainting values on historical bars, but repainting values in real time.
If you want to enable the MTF functionality for your custom Pin
 
 
  • Post #210
  • Quote
  • Mar 15, 2023 5:28pm Mar 15, 2023 5:28pm
  •  reteid2222
  • Joined Aug 2015 | Status: Member | 2,520 Posts
The indicator has horizontal lines where you only know these values at the end of the horizontal line... so it looks maybe good in past but it is a repainter naturally...
The strategy is interesting because simply to code...
So I replaced the M5 rsi14 with rsi42; 42=3*14... for me the only way to remove the repainting!

Quoting mr.smil3
Disliked
{quote} warning: this indicator is repainting. none repainting version required some tweaks. eg: alert only after 15candle closed
Ignored
Attached Image (click to enlarge)
Click to Enlarge

Name: screenshot.png
Size: 42 KB
Vucking good EA coder...
 
 
  • Post #211
  • Quote
  • Mar 15, 2023 5:38pm Mar 15, 2023 5:38pm
  •  totomagic
  • | New Member | Status: Member | 84 Posts
Quoting reteid2222
Disliked
The indicator has horizontal lines where you only know these values at the end of the horizontal line... so it looks maybe good in past but it is a repainter naturally... The strategy is interesting because simply to code... So I replaced the M5 rsi14 with rsi42; 42=3*14... for me the only way to remove the repainting! {quote} {image}
Ignored
end of the horizontal line is the end of the 15M incriment...your pics are in between these periods...has to be on 12:00 12:15 12:30 12:45 etc...
 
 
  • Post #212
  • Quote
  • Mar 15, 2023 5:46pm Mar 15, 2023 5:46pm
  •  totomagic
  • | New Member | Status: Member | 84 Posts
go back and check manually 5M then 15M..signals hold up


this is what it looks like on the charts in respective time..

5M chart regular rsicrosses 50 at 13:00
Attached Image (click to enlarge)
Click to Enlarge

Name: screenshot.png
Size: 27 KB



15M chart regular rsi crosses 50 at 13:00 (15M incriment)
Attached Image (click to enlarge)
Click to Enlarge

Name: screenshot.png
Size: 24 KB


strong signal
 
 
  • Post #213
  • Quote
  • Mar 16, 2023 2:29am Mar 16, 2023 2:29am
  •  Eagle-Eye
  • | Joined Nov 2017 | Status: Member | 208 Posts
Quoting reteid2222
Disliked
The indicator has horizontal lines where you only know these values at the end of the horizontal line... so it looks maybe good in past but it is a repainter naturally... The strategy is interesting because simply to code... So I replaced the M5 rsi14 with rsi42; 42=3*14... for me the only way to remove the repainting! {quote} {image}
Ignored
Is this OK?
 
 
  • Post #214
  • Quote
  • Mar 16, 2023 2:53am Mar 16, 2023 2:53am
  •  reteid2222
  • Joined Aug 2015 | Status: Member | 2,520 Posts
Quoting Eagle-Eye
Disliked
{quote} Is this OK?
Ignored
It s a commom method I took on for example M5 to plot the EMA period 10 of M5, M15, M30 and H1 to take the EMA of 3*10, 6*10 and 12*10 to get a non repainting indicator... it looks not 100% same but nearly and in my way the best possibility to get a chance to code and see 100% the historical data on chart...
Vucking good EA coder...
 
 
  • Post #215
  • Quote
  • Edited Mar 17, 2023 3:35am Mar 16, 2023 4:15am | Edited Mar 17, 2023 3:35am
  •  niks
  • | Joined Dec 2022 | Status: Member | 286 Posts
if these signals are confirmed, then you can use the attached indicator (see latest version) for mt5 if you wish

Attached Image (click to enlarge)
Click to Enlarge

Name: screenshot.png
Size: 13 KB


Attached Image (click to enlarge)
Click to Enlarge

Name: screenshot.png
Size: 12 KB
 
 
  • Post #216
  • Quote
  • Mar 16, 2023 5:21am Mar 16, 2023 5:21am
  •  Outcast918
  • | Joined Jul 2022 | Status: Member | 21 Posts
Hello Everyone,

I am trying to work on a fix for the repainting.
 
 
  • Post #217
  • Quote
  • Mar 16, 2023 7:38am Mar 16, 2023 7:38am
  •  niks
  • | Joined Dec 2022 | Status: Member | 286 Posts
some more signals?

Attached Image (click to enlarge)
Click to Enlarge

Name: screenshot.png
Size: 23 KB
 
 
  • Post #218
  • Quote
  • Mar 16, 2023 7:42am Mar 16, 2023 7:42am
  •  Outcast918
  • | Joined Jul 2022 | Status: Member | 21 Posts
Quoting niks
Disliked
some more signals? {image}
Ignored
Brother the cross needs to happen at 15min intervals, eg: 12:00, 12:15, 12:30, 12:45
 
 
  • Post #219
  • Quote
  • Mar 16, 2023 7:51am Mar 16, 2023 7:51am
  •  niks
  • | Joined Dec 2022 | Status: Member | 286 Posts
Quoting Outcast918
Disliked
{quote} Brother the cross needs to happen at 15min intervals, eg: 12:00, 12:15, 12:30, 12:45
Ignored
please, look more carefully. the line is for illustration only, not to provide you with a signal service, try it for yourself if you have mt5, it will solve your "repaint" issue whatever that is
 
 
  • Post #220
  • Quote
  • Mar 16, 2023 8:05am Mar 16, 2023 8:05am
  •  Outcast918
  • | Joined Jul 2022 | Status: Member | 21 Posts
Quoting niks
Disliked
{quote} please, look more carefully. the line is for illustration only, not to provide you with a signal service, try it for yourself if you have mt5, it will solve your "repaint" issue whatever that is
Ignored
I am going to pay a developer on upwork to fix the pinescript and I'll upload it here
 
 
  • Trading Systems
  • /
  • RSI 50 X Scalping System
  • Reply to Thread
    • 1 8910Page 1112 13
    • 1 10Page 1112 13
5 traders viewing now
  • More
Top of Page
  • Facebook
  • Twitter
About FF
  • Mission
  • Products
  • User Guide
  • Media Kit
  • Blog
  • Contact
FF Products
  • Forums
  • Trades
  • Calendar
  • News
  • Market
  • Brokers
  • Trade Explorer
FF Website
  • Homepage
  • Search
  • Members
  • Report a Bug
Follow FF
  • Facebook
  • Twitter

FF Sister Sites:

  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Forex Factory® is a brand of Fair Economy, Inc.

Terms of Service / ©2023