Repaints AGAIG Best Trading Chart Setup For ThinkOrSwim

Repaints
The candle color. They don't match what I have selected in Settings:Appearance. The lower study does.
 

Attachments

  • Candles.PNG
    Candles.PNG
    8.1 KB · Views: 40

Join useThinkScript to post your question to a community of 21,000+ developers and traders.

The candle color. They don't match what I have selected in Settings:Appearance. The lower study does.
Try replacing this code: #shared_shared_AsGood_T#TM_TrendCandles_2Color7
with the following:
Code:
#shared_shared_AsGood_T#TM_TrendCandles_2Color7

input price = close;
input length = 20;

def K = (Highest(high, length) + Lowest(low, length)) / 2 + ExpAverage(close, length);
def momo = Inertia(price - K / 2, length);

def pos         = momo >= 0;
def neg         = momo < 0;
def up         = momo >= momo[1];
def dn         = momo < momo[1];

def PosUp = pos and up;
def PosDn = pos and dn;
def NegDn = neg and dn;
def NegUp = neg and up;

DefineGlobalColor("Up", Color.UPTICK);
DefineGlobalColor("Down", Color.DOWNTICK);
AssignPriceColor( if neg and up then GlobalColor("Up") else if PosDn then GlobalColor("Down") else if NegDn then GlobalColor("Down") else if NegUp then GlobalColor("Up") else GlobalColor("Up"));
 
Hi, Thanks for beautiful script. May I know what are these highlighted number 1, 2 and 3 in screenshot?
 

Attachments

  • ScreenshotOct10.jpg
    ScreenshotOct10.jpg
    194.1 KB · Views: 74
Hi, Thanks for beautiful script. May I know what are these highlighted number 1, 2 and 3 in screenshot?
Put your pointer on the area in (or line) in question, right-click and it should tell you what is being highlighted (it looks like the line is making a change in direction?)
 
No stop orders for day trades... I'm familiar with your trading style.. Looks like the strategy is built for swing trading.

Also, what are you using to confirm your trades.. Any successes?
I use changes in direction to exit trades...two, or more, indicators in agreement
 

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

87k+ Posts
457 Online
Create Post

The Market Trading Game Changer

Join 2,500+ subscribers inside the useThinkScript VIP Membership Club
  • Exclusive indicators
  • Proven strategies & setups
  • Private Discord community
  • ‘Buy The Dip’ signal alerts
  • Exclusive members-only content
  • Add-ons and resources
  • 1 full year of unlimited support

Frequently Asked Questions

What is useThinkScript?

useThinkScript is the #1 community of stock market investors using indicators and other tools to power their trading strategies. Traders of all skill levels use our forums to learn about scripting and indicators, help each other, and discover new ways to gain an edge in the markets.

How do I get started?

We get it. Our forum can be intimidating, if not overwhelming. With thousands of topics, tens of thousands of posts, our community has created an incredibly deep knowledge base for stock traders. No one can ever exhaust every resource provided on our site.

If you are new, or just looking for guidance, here are some helpful links to get you started.

What are the benefits of VIP Membership?
VIP members get exclusive access to these proven and tested premium indicators: Buy the Dip, Advanced Market Moves 2.0, Take Profit, and Volatility Trading Range. In addition, VIP members get access to over 50 VIP-only custom indicators, add-ons, and strategies, private VIP-only forums, private Discord channel to discuss trades and strategies in real-time, customer support, trade alerts, and much more. Learn all about VIP membership here.
How can I access the premium indicators?
To access the premium indicators, which are plug and play ready, sign up for VIP membership here.
Back
Top