Votes
Answers
Views
Question
0
1
557
asked 1 year ago by Valerio SD
Category:
Watch Lists
I would like to change the background (or the font color) of my P/L OPEN and P/L DAY with GREEN being a profit, RED, being a loss, and black (white) being no change. I have not been able to figure out how to add a ThinkScript to implement it. Many th...
1
1
103
asked 1 year ago by TMac
Category:
Strategy Guide
Tags:
Backtesting a strategy. Entry indicators (arrows up/down) are correct timing for entries based on desired conditions. When backtesting using AddOrder to buy (what I desired to buy is when the actual condition occurs) the entry and exits are one candl...
0
1
109
asked 1 year ago by Alex Loo
Category:
Watch Lists
Hi Mr Hahn May i know how to create a QQE Histogram Crossover for watchlist in TOS similar to the MACD Histogram Crossover found in TOS? The MACD Histogram Crossover in the watchlist will show a 1 when there is a crossover and 0 when there is none. I...
0
1
58
asked 1 year ago by Angeli Ho
Category:
Watch Lists
I have TS Radar with 2 columns. The 1st one is the closing price of the stock. The 2nd column is blank for me to input a number. And I have a script to change the background of the 2nd column to green if the 1st column value is higher than the 2...
0
1
110
asked 1 year ago by Davide Bianchini
Category:
Alerts and Notifications
Hi Pete, I would like to be alerted whenever a stock (AAPL for example) has a rapid change in price---for example, changes more than 1% in 15 minutes. I understand that I would need to create a watchlist first, in order to receive audio alerts, then ...
0
1
81
asked 1 year ago by Thor Rudbek
Category:
Chart Studies
Is it possible to project the outcome of a current position under the assumption of a future price? For example, I have a complicated position in XYZ. I'd like to be able to project the P&L (and other results) for various assumptions abou...
0
1
144
asked 1 year ago by Good Bar Finder
Category:
Stock Scanners
Hey Pete! I am using the Option Hacker and I am trying to scan for options that are up 10% or more on the day. I tried using the code in the screenshot below but it keeps referencing the stock's data rather than the option's. Any ideas on how to make...
0
1
202
asked 1 year ago by Brady Hersch
Category:
Chart Studies
Hi Pete, I was wondering how to create an alert on the actual chart itself regardless of the symbol. I have a script I created for study alerts, but I would like it on the actual chart just like for example when you gave out the Heikin Ashi bar color...
0
1
177
asked 1 year ago by Tyrell Morris
Category:
Stock Scanners
I found 2 codes/scans that I want to combine into one. 1. plot scan = (close - low) / (high - low) >= 0.9; 2. close is less than close from 1 bars ago
0
1
109
asked 1 year ago by Bill Wilson
Category:
Stock Scanners
Long Version: I want to make a scan study where VWAP weekly is greater than VWAP monthly. I can easily do that using the conditional wizard in the Scan tab which creates the following: plot scan = reference VWAP("time frame" = "WEEK")."VWAP" is great...