All Collections
Trading Platforms
How-To_Trading Platform
Watchlist - Phoenix Trend Strength watchlist column code and shared links
Watchlist - Phoenix Trend Strength watchlist column code and shared links

The Phoenix Finder is a tool for researching stocks and ticker symbols in those baskets to gain insight into strength or weakness.

Duncan Boggs avatar
Written by Duncan Boggs
Updated over a week ago


For instructions on adding a custom column to a TOS watchlist, search for watchlist, or click on the button below.

-----------------------------------------------------

You can set up your Custom Phoenix Trend Strength Candles Column 2 ways. 

First by copying the below code into a Custom Script in TOS. Once you have the code pasted into a Custom Script you will be able to apply the column to any of your watchlists.

Second by using the shared links provided. 

CODE TO CREATE A SQUEEZE WATCHLIST COLUMN

The Phoenix Finder / Trend Strength watch-list in TOS is available for free by following the instructions below.

Custom Code:

# ST_TrendStrengthCandleColumn
# (c) 2019 Simpler Trading, LLC
# Last update 03/19/19
# By Eric Purdy

# Shared Link -    http://tos.mx/KedMmc

def Length1 = 5;
def Length2 = 8;
def Length3 = 13;
def Length4 = 21;
def Length5 = 34;

def ema1 = expAverage(close, Length1);
def ema2 = expAverage(close, Length2);
def ema3 = expAverage(close, Length3);
def ema4 = expAverage(close, Length4);

def u1 = ema1 > ema2;
def u2 = ema2 > ema3;
def u3 = ema3 > ema4;

def d1 = ema1 < ema2;
def d2 = ema2 < ema3;
def d3 = ema3 < ema4;

def trendStrength = if (u1 and u2 and u3) then 2 else if (u1 and u2 and !u3) then 1 else if (d1 and d2 and d3) then -2 else if (d1 and d2 and !d3) then -1 else 0;

addLabel(yes, "Trend", if trendStrength == 2 then color.green else if trendStrength == 1 then color.dark_green else if trendStrength == -2 then color.red else if trendStrength == -1 then color.dark_red else color.yellow);

---------------------------------------------------------------

SHARED LINKS: 

If you don't want to copy and paste the above code, just use the following SHARED LINKS to add the custom column to the TOS watchlist:  

How to Open and Save a Shared Grid Layout
https://intercom.help/simpler-trading/en/articles/3290836

Watchlist - Squeeze Watchlist Column code and shared links

Watchlist - What does the number and the colors in the Squeeze column mean
https://intercom.help/simpler-trading/en/articles/3284758

Watchlist - My custom squeeze column in TOS shows bad results
https://intercom.help/simpler-trading/en/articles/3284854

Watchlist - How to create a custom watchlist column in TOS
https://intercom.help/simpler-trading/en/articles/3284541

Watchlist - Change Column and Rows
https://intercom.help/simpler-trading/en/articles/3284895

------------------------

Phoenix Finder - Settings and Configuration
https://intercom.help/simpler-trading/en/articles/316899

How to configure Trend Strength Candles settings and configuration.
https://intercom.help/simpler-trading/en/articles/3169348

How to change the Phoenix Finder symbols in TradeStation
https://intercom.help/simpler-trading/en/articles/334778

Phoenix Finder and Folio - How to set up Danielle's charts the easy way
https://intercom.help/simpler-trading/en/articles/347670

Phoenix Finder - Getting labels to display properly
https://intercom.help/simpler-trading/en/articles/347654

Watchlist - How to create a custom watchlist column in TOS
https://intercom.help/simpler-trading/en/articles/328454

Phoenix Finder - How do I change the way it shows on the chart?
https://intercom.help/simpler-trading/en/articles/346999

Did this answer your question?