- Home
- About
- Memberships
- Member Home
- FAQs
- Prorealtime Code Library
- Tutorials
- Vlogs
- Log In
- Home
- About
- Memberships
- Member Home
- FAQs
- Prorealtime Code Library
- Tutorials
- Vlogs
- Log In
During the discussion around the true range break out system I had an idea to use Average True Range (ATR)…
Read more
The Stalker ATR Based Trailing Stop was developed as a step of developing the Bar Hunter RB Mod System The…
Read more
This video discusses how the Stalker ATR Based Trailing Stop works along with discussing the Prorealtime graph function The Stalker…
Read more
Overview The trailing stop combines a starting point and step value based on a percentage of the price with a…
Read more
Overview This code was first used for swing trading systems to either close out break out trades in profit before…
Read more
Overview The trailing stop combines a starting point and step value based on a percentage of the price with a…
Read more
//Variables NATR = A //ATR Period PATR = C// ATR Multiplier for Profit //Target SET TARGET PROFIT PATR*AverageTrueRange[NATR](close)
//Variables NATR = A //ATR Period SATR = B // ATR Multiplier for Stop //Stop SET STOP LOSS SATR*AverageTrueRange[NATR](close)