ChatGPT, BARD, Other AI Scripts Which Can't Be Used In ThinkOrSwim

MerryDay

Administrative
Staff member
Staff
VIP
Lifetime
90% of the members attempting chatGPT scripting; do not provide good detailed specifications.

Members know what end result that they want but lack the ability to tell chatGPT, the step-by-step logic required to code a script to achieve that end result.
This results in chatGPT providing poor code.

Here is a video on how to successfully have chatGPT create functional scripts.

The above video, explains the basics of providing good specifications to AI which results in better scripts.
AOzhl05.png
 
Last edited:
I ask CHATGPT to convert this futu indicator to thinkorswim indicator ,it finished most but at last part ,it can't do .

Code:
# Define variables
def A1 = Inertia(ExpAverage(close, 5), 6);
def A2 = Inertia(ExpAverage(close, 8), 6);
def A3 = Inertia(ExpAverage(close, 11), 6);
def A4 = Inertia(ExpAverage(close, 14), 6);
def A5 = Inertia(ExpAverage(close, 17), 6);
def B = A1 + A2 + A3 + A4 - 4 * A5;
def TOWERC = ExpAverage(B, 2);

# Plotting
plot Forecast1 = Inertia(ExpAverage(B, 3), 6);
Forecast1.SetPaintingStrategy(PaintingStrategy.POINTS);
Forecast1.SetDefaultColor(Color.GREEN);

plot Forecast2 = Inertia(ExpAverage(B, 4), 6);
Forecast2.SetPaintingStrategy(PaintingStrategy.POINTS);
Forecast2.SetDefaultColor(Color.GREEN);

plot Forecast3 = Inertia(ExpAverage(B, 5), 6);
Forecast3.SetPaintingStrategy(PaintingStrategy.POINTS);
Forecast3.SetDefaultColor(Color.GREEN);

plot Forecast4 = Inertia(ExpAverage(B, 6), 6);
Forecast4.SetPaintingStrategy(PaintingStrategy.POINTS);
Forecast4.SetDefaultColor(Color.GREEN);

plot Forecast5 = Inertia(ExpAverage(B, 7), 6);
Forecast5.SetPaintingStrategy(PaintingStrategy.POINTS);
Forecast5.SetDefaultColor(Color.GREEN);

plot Forecast6 = Inertia(ExpAverage(B, 8), 6);
Forecast6.SetPaintingStrategy(PaintingStrategy.POINTS);
Forecast6.SetDefaultColor(Color.GREEN);

plot Forecast7 = Inertia(ExpAverage(B, 9), 6);
Forecast7.SetPaintingStrategy(PaintingStrategy.POINTS);
Forecast7.SetDefaultColor(Color.GREEN);

plot Forecast8 = Inertia(ExpAverage(B, 10), 6);
Forecast8.SetPaintingStrategy(PaintingStrategy.POINTS);
Forecast8.SetDefaultColor(Color.GREEN);

plot Forecast9 = Inertia(ExpAverage(B, 11), 6);
Forecast9.SetPaintingStrategy(PaintingStrategy.POINTS);
Forecast9.SetDefaultColor(Color.GREEN);

plot Forecast10 = Inertia(ExpAverage(B, 12), 6);
Forecast10.SetPaintingStrategy(PaintingStrategy.POINTS);
Forecast10.SetDefaultColor(Color.GREEN);

plot Forecast11 = Inertia(ExpAverage(B, 13), 6);
Forecast11.SetPaintingStrategy(PaintingStrategy.POINTS);
Forecast11.SetDefaultColor(Color.GREEN);

plot Forecast12 = Inertia(ExpAverage(B, 14), 6);
Forecast12.SetPaintingStrategy(PaintingStrategy.POINTS);
Forecast12.SetDefaultColor(Color.GREEN);

plot Forecast13 = Inertia(ExpAverage(B, 15), 6);
Forecast13.SetPaintingStrategy(PaintingStrategy.POINTS);
Forecast13.SetDefaultColor(Color.GREEN);

plot Forecast14 = Inertia(ExpAverage(B, 16), 6);
Forecast14.SetPaintingStrategy(PaintingStrategy.POINTS);
Forecast14.SetDefaultColor(Color.GREEN);

plot Forecast15 = Inertia(ExpAverage(B, 17), 6);
Forecast15.SetPaintingStrategy(PaintingStrategy.POINTS);
Forecast15.SetDefaultColor(Color.GREEN);

# Draw sticks
def StickLineUp = if TOWERC >= TOWERC[1] then TOWERC else Double.NaN;
plot StickLine = StickLineUp;
StickLine.SetPaintingStrategy(PaintingStrategy.STICKS);
StickLine


this part not working:
# Draw sticks
def StickLineUp = if TOWERC >= TOWERC[1] then TOWERC else Double.NaN;
plot StickLine = StickLineUp;
StickLine.SetPaintingStrategy(PaintingStrategy.STICKS);
StickLine

reply to #116

If you asked it to convert a study , can you provide a link to that original one?
Otherwise we have no idea what is supposed to happen..
I have no idea what Futu means.


# Draw sticks
def StickLineUp = if TOWERC >= TOWERC[1] then TOWERC else Double.NaN;
plot StickLine = StickLineUp;

---this is wrong. there is no painting parameter called sticks
StickLine.SetPaintingStrategy(PaintingStrategy.STICKS);

try adding a # to disable it and see what happens
# StickLine.SetPaintingStrategy( PaintingStrategy.STICKS)


--- this is wrong. should be removed
StickLine

https://tlc.thinkorswim.com/center/reference/thinkScript/Constants/PaintingStrategy
 
Not sure if this is the right place for this thread, but I'll give it a try.

I've been reading Brian Shannon's Book "Anchored VWAP" and found it to be very helpful even for intraday trading. I began writing an AWAP thinkscript which is in the spirit of the book.

Objective: Create a thinkscript that draws 2 separate AVWAP lines, one anchored to the High-Of-Day and the other to the Low-Of-Day.
Potential issues: I'm not sure if thinkscript can redraw the AVWAP lines if the HOD/LOD changes.

Code snippet of something I tried
----
Ruby:
#for ETH to RTH crossover and day to day crossover.
def isCrossover = (isRTH and !isRTH[1]) or (GetYYYYMMDD() != GetYYYYMMDD()[1]);

#Get High Of Day
def hodValue = if isCrossover then high
    else if high > hodValue[1] then high
    else hodValue[1];

#Get the timestamp of the HOD - to be used for identifying bars past this time for VWAP calculation
def getHodTime = if high == HighestAll(hodValue) then GetTime() else getHodTime[1];

def postHod = if SecondsTillTime(getHodTime) <= 0 then 1 else 0;
#I get an error on this previous line due to getHodTime not being constant.
---
The thought was to get the timestamp of the HOD, the apply the following code to calculate AVWAP. The following is not my code but I've seen it on the forums and it works well.
---
Ruby:
input anchorTime = 1030;
def postAnchorTime = if SecondsTillTime(anchorTime) <= 0 and today then 1 else 0;

plot anchoredVWAP = TotalSum(if postAnchorTime then ((high+low+close+open)/4)*(volume) else 0)/TotalSum(if postAnchorTime then volume else 0);
---

How do i get AVWAP to anchor to the HOD and LOD?

The screenshot is what' i'm looking for. Note: the screenshot had anchor points set manually. I'm looking for auto anchor points attached to the HOD/LOD.

Thank you.
 

Attachments

  • 2023-06-04_16-24-55.png
    2023-06-04_16-24-55.png
    26.6 KB · Views: 163
Last edited:
# VWAP Bands Strategy with RSI Filter
# Buy when price crosses below VWAP LowerBand and RSI is below 30
# Sell when price crosses above VWAP UpperBand and RSI is above 70

input numDevDn = -2.0;
input numDevUp = 2.0;
input timeFrame = {default DAY, WEEK, MONTH};

def cap = GetAggregationPeriod();
def errorInAggregation =
timeFrame == timeFrame.DAY and cap >= AggregationPeriod.WEEK or
timeFrame == timeFrame.WEEK and cap >= AggregationPeriod.MONTH;
Assert(!errorInAggregation, "timeFrame should be not less than current chart aggregation period");

def yyyyMmDd = GetYYYYMMDD();
def periodIndx;
switch (timeFrame) {
case DAY:
periodIndx = yyyyMmDd;
case WEEK:
periodIndx = Floor((DaysFromDate(First(yyyyMmDd)) + GetDayOfWeek(First(yyyyMmDd))) / 7);
case MONTH:
periodIndx = RoundDown(yyyyMmDd / 100, 0);
}
def isPeriodRolled = CompoundValue(1, periodIndx != periodIndx[1], yes);

def volumeSum;
def volumeVwapSum;
def volumeVwap2Sum;

if (isPeriodRolled) {
volumeSum = volume;
volumeVwapSum = volume * vwap;
volumeVwap2Sum = volume * Sqr(vwap);
} else {
volumeSum = CompoundValue(1, volumeSum[1] + volume, volume);
volumeVwapSum = CompoundValue(1, volumeVwapSum[1] + volume * vwap, volume * vwap);
volumeVwap2Sum = CompoundValue(1, volumeVwap2Sum[1] + volume * Sqr(vwap), volume * Sqr(vwap));
}
def price = volumeVwapSum / volumeSum;
def deviation = Sqrt(Max(volumeVwap2Sum / volumeSum - Sqr(price), 0));

plot VWAP = price;
plot UpperBand = price + numDevUp * deviation;
plot LowerBand = price + numDevDn * deviation;

VWAP.SetDefaultColor(GetColor(0));
UpperBand.SetDefaultColor(GetColor(2));
LowerBand.SetDefaultColor(GetColor(4));

# RSI Calculation
def length = 14;
def NetChgAvg = MovingAverage(AverageType.EXPONENTIAL, close - close[1], length);
def TotChgAvg = MovingAverage(AverageType.EXPONENTIAL, AbsValue(close - close[1]), length);
def ChgRatio = if TotChgAvg != 0 then NetChgAvg / TotChgAvg else 0;
def RSI = Round(50 * (ChgRatio + 1), 0);

# Strategy
def buySignal = close crosses below LowerBand and RSI < 30;
def sellSignal = close crosses above UpperBand and RSI > 70;

# Plotting Buy and Sell signals on chart
plot BuySignal = if BuySignal then low else Double.NaN;
plot SellSignal = if SellSignal then high else Double.NaN;

BuySignal.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_UP);
BuySignal.SetDefaultColor(Color.GREEN);
SellSignal.SetDefaultColor (Color.RED);
those area created error
plot BuySignal =
plot SellSignal =
I didn't know why
 
Hi everyone,

I was trying to write a code that calculates the distance from 9ema to the VWAP, but there is something wrong as the result is not correct, Can anyone take a look at this script to see what is the problem? Thanks for your help.

Here is the code:

# Calculate the 9EMA for the current chart time frame
input length = 9;
def ema9 = ExpAverage(close, length);

# Calculate the VWAP for the current chart time frame
def vwapValue = vwap;

# Calculate the distance between 9EMA and VWAP
def distance = ema9 - vwapValue;

# Calculate the percentage distance between 9EMA and VWAP
def percentageDistance = (distance / vwapValue) * 100;

# Display the percentage distance as a label on the chart
AddLabel(yes, "Distance from VWAP (%): " + AsPercent(percentageDistance / 100), Color.WHITE);
 
PLEASE HELP ME
Not sure if it's possible but, I need script so my watchlist will display EXACT LAST TRADED PRICE for stocks in afterhours session. Not Last closing price, not BID or ASK, no MARK price which is very misleading, but Last price of the stack value traded last - not always but should be betwen of BID ans ASK range.
I was able to find one for displaying EXACT LAST price on Chart, but I must have one in watchlist somehow. Is it anyone that can HELP?? Please.

P.S. This script for displaying last price on chart - but I need one in watchlist >

# After Hours Last Price
# Displays the exact last price of a stock during aftermarket trading session

declare lower;

# Define the aggregation period (e.g., 1 minute, 5 minutes, etc.)
input aggregationPeriod = AggregationPeriod.MIN;

# Calculate the aftermarket last price
def lastPrice = close(period = aggregationPeriod);
plot AfterHoursLastPrice = lastPrice;

# Customize the appearance of the plot
AfterHoursLastPrice.SetDefaultColor(color.white);
AfterHoursLastPrice.SetStyle(Curve.SHORT_DASH);
 
why is it i see Nothing on Using CHAT GPT in regards to what it can or cannot do
with ThinkScript . R there any working Prompts .what up with the silence .
 
Last edited by a moderator:
I've been currently running a Delta indicator similar to the MACD. Essentially I asked Chatgpt to code me a delta indicator along with a moving average line and took the histogram section of the MACD and applied it together. The issue Im running into is when the delta reaches an upper threshold and lower threshold. It double.nan and disables it from the chart. Can anyone help me fix this section of the script so that it doesn't double.nan and still plots the last known number?

Here's the script:
Line 32 is where my issue is and Im just not advanced enough to figure it out.
Ruby:
declare lower;

# Define the input parameters
input length = 20;
input showDeltaExp = yes;
input DexTrendLbl = yes;
input DexStrengthLbl = yes;
input DiffLbl = yes;

# Define the plot data
def delta = Delta();
def deltaExp = TEMA(delta - delta[length]);
def deltaAccum = Sum(deltaExp, length);

# Add a zero line to the chart
plot ZeroLine = 0;
ZeroLine.SetDefaultColor(Color.GRAY);
ZeroLine.SetStyle(Curve.SHORT_DASH);


# Calculate the smoothed line using a simple moving average
def smaDeltaExp = SimpleMovingAvg(deltaExp, length);


# Plot the smoothed line
plot SmoothedLine = smaDeltaExp;
SmoothedLine.AssignValueColor(if Smoothedline > zeroline then Color.green else color.dark_red);
SmoothedLine.HideBubble();
SmoothedLine.HideTitle();



# Plot The Diff
plot Diff = deltaExp - smoothedLine;
Diff.SetDefaultColor(GetColor(5));
Diff.SetPaintingStrategy(PaintingStrategy.HISTOGRAM);
Diff.SetLineWeight(3);
Diff.DefineColor("Positive and Up", Color.GREEN);
Diff.DefineColor("Positive and Down", Color.DARK_GREEN);
Diff.DefineColor("Negative and Down", Color.RED);
Diff.DefineColor("Negative and Up", Color.dark_red);
Diff.AssignValueColor(if Diff >= 0 then if Diff > Diff[1] then Diff.color("Positive and Up") else Diff.color("Positive and Down") else if Diff < Diff[1] then Diff.color("Negative and Down") else Diff.color("Negative and Up"));


# Add a legend
AddLabel(DexTrendLbl, "DeXTrend: " + AsText(deltaExp, NumberFormat.TWO_DECIMAL_PLACES), if DeltaExpansion > 0 then Color.GREEN else Color.Yellow);


AddLabel(DiffLbl, "Diff: " + AsText(diff, NumberFormat.TwO_DECIMAL_PLACES),  if Diff < 0 then Color.Red else if Diff > .5 then color.dark_orange else if Diff < -.5 then color.dark_orange else color.green);

Here's a photo of what its suppose to look like when there is strength to the call side, as well as another indicator on the price chart that paintbars the magenta for entries. Has similar coding.
3zBMd91.png


This is what i get when it double.nan's. Which also removes the magenta paintbar.
oaYITA4.png


any help would be greatly appreciated and would further educate me in coding as well to fix the GWAP indicator as well when it Nan's out or zeros. Thank you!
 
Last edited:
that's great if it can provide something useful for your project.
i agree, new technology always seems to shift the job market, usually to something more automated related.
my beef with it is, people who don't know any thinkscript are asking it to generate a code, and expect it to work, and it doesn't. i think a tool shouldn't exist until it works.
i have no position to protect. i'm just a guy, doing a hobby. i have random pockets of free time, that i like to use to volunteer on this site, to help out others.
To be sure you have a knack at coding few of us do.

Curious, do you trade on TOS?
 
why is it i see Nothing on Using CHAT GPT in regards to what it can or cannot do
with ThinkScript . R there any working Prompts .what up with the silence .

Watch Tony Zhang of OptionsPlay's AI videos
He managed to get correction done on the errors. He apparently asked ChatGPT to correct the specific error and got the correction that worked. Good Luck.
 
Last edited by a moderator:
can one help please. this code from chat has error:
# Define input parameters
input underlyingSymbol = "SPX";
input volatility = imp_volatility(underlyingSymbol);

# Get option data
def optionChain = OptionChain(underlyingSymbol, GetYYYYMMDD());
def strikeCount = optionChain.GetStrikeCount();
def closePrice = close(underlyingSymbol);

# Loop through each strike and calculate gamma exposure for call and put options
for i = 0 to strikeCount - 1 {
def strike = optionChain.GetStrike(i);
def callOption = optionChain.GetCall(i);
def putOption = optionChain.GetPut(i);
def callBidPrice = bid(callOption);
def callAskPrice = ask(callOption);
def callMidPrice = (callBidPrice + callAskPrice) / 2;
def putBidPrice = bid(putOption);
def putAskPrice = ask(putOption);
def putMidPrice = (putBidPrice + putAskPrice) / 2;
def callGamma = Gamma(closePrice, volatility);
def callGammaExposure = callGamma * callMidPrice * 100;
def putGamma = Gamma(closePrice, volatility);
def putGammaExposure = putGamma * putMidPrice * 100;

# Plot gamma exposure as horizontal lines on the chart
plot CallGEXLine = if IsNaN(close) then Double.NaN else callGammaExposure;
CallGEXLine.SetDefaultColor(Color.GREEN);
CallGEXLine.SetStyle(Curve.FIRM);
CallGEXLine.SetLineWeight(1);
CallGEXLine.HideBubble();
plot PutGEXLine = if IsNaN(close) then Double.NaN else putGammaExposure;
PutGEXLine.SetDefaultColor(Color.RED);
PutGEXLine.SetStyle(Curve.FIRM);
PutGEXLine.SetLineWeight(1);
PutGEXLine.HideBubble();
 
Hello - I'm new to the forum and I'm hoping someone can help me fix this momentum indicator i've been working on. I can't get the momentum histogram to show at the same time as the Trend line. Can anyone help?

# Trend Momentum Indicator (TMI) for Thinkorswim
# Developed by Fluna
Declare Lower;
# Input parameters
input trendLength = 14;
input momentumLength = 12;
input volatilityLength = 20;
input momentumThreshold = 0.5;
input volatilityThreshold = 1.0;

# Calculate trend direction
def trend = if close > MovingAverage(AverageType.EXPONENTIAL, close, trendLength) then 1 else -1;

# Calculate momentum
def momentum = (close - close[momentumLength]) / close[momentumLength];

# Calculate volatility
def volatility = AbsValue(Log(high / low));

# Plot trend line
plot trendLine = trend;
trendLine.SetDefaultColor(Color.CYAN);

# Plot momentum histogram
plot momentumHistogram = momentum;
momentumHistogram.AssignValueColor(if momentum >= momentumThreshold then Color.GREEN else Color.RED);
momentumHistogram.SetPaintingStrategy(PaintingStrategy.HISTOGRAM);
momentumHistogram.SetLineWeight(2);

# Plot volatility line
plot volatilityLine = volatility;
volatilityLine.SetDefaultColor(Color.BLUE);
volatilityLine.SetStyle(Curve.SHORT_DASH);

# Add alerts
alert(trendLine crosses above 0, "Bullish Trend", Alert.BAR, Sound.Bell);
alert(trendLine crosses below 0, "Bearish Trend", Alert.BAR, Sound.Bell);
alert(momentumHistogram crosses above momentumThreshold, "Strong Momentum Up", Alert.BAR, Sound.Chimes);
alert(momentumHistogram crosses below -momentumThreshold, "Strong Momentum Down", Alert.BAR, Sound.Chimes);
alert(volatilityLine crosses above volatilityThreshold, "High Volatility", Alert.BAR, Sound.Ring);
alert(volatilityLine crosses below volatilityThreshold, "Low Volatility", Alert.BAR, Sound.Ring);
 
Can someone correct the errors for me
Error_TOS Code chatGPT Auto Trade Script_EMA cross + RSI,Macd

# Auto Trading Strategy with Time Frame Optimization

input rsiLength = 14;
input overboughtLevel = 70;
input oversoldLevel = 30;
input macdFastLength = 12;
input macdSlowLength = 26;
input macdLength = 9;

def optimalTimeFrame = OptimizeDataRange(5, 60, 5, "minutes"); # Time frame optimization range

def fastMA = MovingAverage(AverageType.EXPONENTIAL, close, optimalTimeFrame);
def slowMA = MovingAverage(AverageType.EXPONENTIAL, close, optimalTimeFrame);
def rsi = RSI(length = rsiLength);
def macdLine = MACD(close, macdFastLength, macdSlowLength, macdLength).Diff;

def bullishSignal = Crosses(fastMA, slowMA, CrossingDirection.ABOVE) && rsi < oversoldLevel && macdLine > 0;
def bearishSignal = Crosses(fastMA, slowMA, CrossingDirection.BELOW) && rsi > overboughtLevel && macdLine < 0;

# Entry and Exit Conditions
def entry = if bullishSignal then 1
else if bearishSignal then -1
else 0;

def exit = if bullishSignal then -1
else if bearishSignal then 1
else 0;

# Submit Orders
AddOrder(OrderType.BUY_TO_OPEN, entry > 0, 1, tickcolor = GetColor(1), arrowcolor = GetColor(1), name = "Buy");
AddOrder(OrderType.SELL_TO_CLOSE, exit > 0, 1, tickcolor = GetColor(2), arrowcolor = GetColor(2), name = "Sell");

# Plotting Moving Averages
plot FastMAPlot = fastMA;
FastMAPlot.SetDefaultColor(GetColor(1));
FastMAPlot.SetLineWeight(2);

plot SlowMAPlot = slowMA;
SlowMAPlot.SetDefaultColor(GetColor(2));
SlowMAPlot.SetLineWeight(2);

# Plotting RSI
plot RSILine = rsi;
RSILine.SetDefaultColor(GetColor(3));
RSILine.SetLineWeight(2);
RSILine.HideBubble();

# Plotting MACD
plot MACDLine = macdLine;
MACDLine.SetDefaultColor(GetColor(4));
MACDLine.SetLineWeight(2);
MACDLine.HideBubble();
 
Last edited by a moderator:
Hello - I'm new to the forum and I'm hoping someone can help me fix this momentum indicator i've been working on. I can't get the momentum histogram to show at the same time as the Trend line. Can anyone help?

# Trend Momentum Indicator (TMI) for Thinkorswim
# Developed by Fluna
Declare Lower;
# Input parameters
input trendLength = 14;
input momentumLength = 12;
input volatilityLength = 20;
input momentumThreshold = 0.5;
input volatilityThreshold = 1.0;

# Calculate trend direction
def trend = if close > MovingAverage(AverageType.EXPONENTIAL, close, trendLength) then 1 else -1;

# Calculate momentum
def momentum = (close - close[momentumLength]) / close[momentumLength];

# Calculate volatility
def volatility = AbsValue(Log(high / low));

# Plot trend line
plot trendLine = trend;
trendLine.SetDefaultColor(Color.CYAN);

# Plot momentum histogram
plot momentumHistogram = momentum;
momentumHistogram.AssignValueColor(if momentum >= momentumThreshold then Color.GREEN else Color.RED);
momentumHistogram.SetPaintingStrategy(PaintingStrategy.HISTOGRAM);
momentumHistogram.SetLineWeight(2);

# Plot volatility line
plot volatilityLine = volatility;
volatilityLine.SetDefaultColor(Color.BLUE);
volatilityLine.SetStyle(Curve.SHORT_DASH);

# Add alerts
alert(trendLine crosses above 0, "Bullish Trend", Alert.BAR, Sound.Bell);
alert(trendLine crosses below 0, "Bearish Trend", Alert.BAR, Sound.Bell);
alert(momentumHistogram crosses above momentumThreshold, "Strong Momentum Up", Alert.BAR, Sound.Chimes);
alert(momentumHistogram crosses below -momentumThreshold, "Strong Momentum Down", Alert.BAR, Sound.Chimes);
alert(volatilityLine crosses above volatilityThreshold, "High Volatility", Alert.BAR, Sound.Ring);
alert(volatilityLine crosses below volatilityThreshold, "Low Volatility", Alert.BAR, Sound.Ring);
All are plotting, the issue comes down to the mathematical results. Since your trend line will always be +1 or -1, the small values for your histogram and vol line results are much smaller values (.0011975 and .0044909, respectively, for 7/5/23) relative to the +/-1, so they're barely blips on the graph. Multiply the results of these by 10 or 100 to shift the decimal over and you'll now have results that will better show visual change in values against your +/-1 range.

Something like this is all you need:
plot momentumHistogram = momentum*10;
plot volatilityLine = volatility*10;
 
Can someone correct the errors for me
Error_TOS Code chatGPT Auto Trade Script_EMA cross + RSI,Macd

# Auto Trading Strategy with Time Frame Optimization

input rsiLength = 14;
input overboughtLevel = 70;
input oversoldLevel = 30;
input macdFastLength = 12;
input macdSlowLength = 26;
input macdLength = 9;

def optimalTimeFrame = OptimizeDataRange(5, 60, 5, "minutes"); # Time frame optimization range

def fastMA = MovingAverage(AverageType.EXPONENTIAL, close, optimalTimeFrame);
def slowMA = MovingAverage(AverageType.EXPONENTIAL, close, optimalTimeFrame);
def rsi = RSI(length = rsiLength);
def macdLine = MACD(close, macdFastLength, macdSlowLength, macdLength).Diff;

def bullishSignal = Crosses(fastMA, slowMA, CrossingDirection.ABOVE) && rsi < oversoldLevel && macdLine > 0;
def bearishSignal = Crosses(fastMA, slowMA, CrossingDirection.BELOW) && rsi > overboughtLevel && macdLine < 0;

# Entry and Exit Conditions
def entry = if bullishSignal then 1
else if bearishSignal then -1
else 0;

def exit = if bullishSignal then -1
else if bearishSignal then 1
else 0;

# Submit Orders
AddOrder(OrderType.BUY_TO_OPEN, entry > 0, 1, tickcolor = GetColor(1), arrowcolor = GetColor(1), name = "Buy");
AddOrder(OrderType.SELL_TO_CLOSE, exit > 0, 1, tickcolor = GetColor(2), arrowcolor = GetColor(2), name = "Sell");

# Plotting Moving Averages
plot FastMAPlot = fastMA;
FastMAPlot.SetDefaultColor(GetColor(1));
FastMAPlot.SetLineWeight(2);

plot SlowMAPlot = slowMA;
SlowMAPlot.SetDefaultColor(GetColor(2));
SlowMAPlot.SetLineWeight(2);

# Plotting RSI
plot RSILine = rsi;
RSILine.SetDefaultColor(GetColor(3));
RSILine.SetLineWeight(2);
RSILine.HideBubble();

# Plotting MACD
plot MACDLine = macdLine;
MACDLine.SetDefaultColor(GetColor(4));
MACDLine.SetLineWeight(2);
MACDLine.HideBubble();
reply to post137

you didn't describe what you are trying to do, so i can't fix this.
i can get rid of the errors, and have some lines draw, but i have no idea if it's what you want.


this is a strategy. it has addorder() functions.
this is plotting variations of what are normally lower studies, macd and rsi, on the main chart.


there is no function called OptimizeDataRange( ).
no idea what you want for this,
def optimalTimeFrame = OptimizeDataRange(5, 60, 5, "minutes"); # Time frame optimization range

verify average function parameters. using optimalTimeFrame as a length in average.
def fastMA = MovingAverage(AverageType.EXPONENTIAL, close, optimalTimeFrame);

MovingAverage ( averageType, data, length);
https://tlc.thinkorswim.com/center/reference/thinkScript/Functions/Tech-Analysis/MovingAverage


parameters in macd function are wrong
def macdLine = MACD(close, macdFastLength, macdSlowLength, macdLength).Diff;
should be: length , length , length , type , yes/no
close isn't valid
https://tlc.thinkorswim.com/center/reference/Tech-Indicators/studies-library/M-N/MACD


can't have same variable on both sides of an equals sign
plot MACDLine = macdLine;
change to
plot MACDLine2 = macdLine;


Code:
#chat137_fix_macd_strat

#https://usethinkscript.com/threads/chatgpt-bard-other-ai-scripts-which-cant-be-used-in-thinkorswim.13822/page-7#post-127089
#prdgsdz  7/5  #137

#Can someone correct the errors for me
#Error_TOS Code chatGPT Auto Trade Script_EMA cross + RSI,Macd

# Auto Trading Strategy with Time Frame Optimization


input rsiLength = 14;
input overboughtLevel = 70;
input oversoldLevel = 30;
input macdFastLength = 12;
input macdSlowLength = 26;
input macdLength = 9;

#def optimalTimeFrame = OptimizeDataRange(5, 60, 5, "minutes"); # Time frame optimization range
input optimalTimeFrame = 5;

def fastMA = MovingAverage(AverageType.EXPONENTIAL, close, optimalTimeFrame);
def slowMA = MovingAverage(AverageType.EXPONENTIAL, close, optimalTimeFrame);
def rsi = RSI(length = rsiLength);
#def macdLine = MACD(close, macdFastLength, macdSlowLength, macdLength).Diff;
def macdLine = MACD(macdFastLength, macdSlowLength, macdLength).Diff;

def bullishSignal = Crosses(fastMA, slowMA, CrossingDirection.ABOVE) && rsi < oversoldLevel && macdLine > 0;
def bearishSignal = Crosses(fastMA, slowMA, CrossingDirection.BELOW) && rsi > overboughtLevel && macdLine < 0;

# Entry and Exit Conditions
def entry = if bullishSignal then 1
else if bearishSignal then -1
else 0;

def exit = if bullishSignal then -1
else if bearishSignal then 1
else 0;

# Submit Orders
AddOrder(OrderType.BUY_TO_OPEN, entry > 0, 1, tickcolor = GetColor(1), arrowcolor = GetColor(1), name = "Buy");
AddOrder(OrderType.SELL_TO_CLOSE, exit > 0, 1, tickcolor = GetColor(2), arrowcolor = GetColor(2), name = "Sell");

# Plotting Moving Averages
plot FastMAPlot = fastMA;
FastMAPlot.SetDefaultColor(GetColor(1));
FastMAPlot.SetLineWeight(2);

plot SlowMAPlot = slowMA;
SlowMAPlot.SetDefaultColor(GetColor(2));
SlowMAPlot.SetLineWeight(2);

# Plotting RSI
plot RSILine = rsi;
RSILine.SetDefaultColor(GetColor(3));
RSILine.SetLineWeight(2);
RSILine.HideBubble();

# Plotting MACD
plot MACDLine2 = macdLine;
MACDLine2.SetDefaultColor(GetColor(4));
MACDLine2.SetLineWeight(2);
MACDLine2.HideBubble();
#
 
Hello - I'm new to the forum and I'm hoping someone can help me fix this momentum indicator i've been working on. I can't get the momentum histogram to show at the same time as the Trend line. Can anyone help?

# Trend Momentum Indicator (TMI) for Thinkorswim
# Developed by Fluna
Declare Lower;
# Input parameters
input trendLength = 14;
input momentumLength = 12;
input volatilityLength = 20;
input momentumThreshold = 0.5;
input volatilityThreshold = 1.0;

# Calculate trend direction
def trend = if close > MovingAverage(AverageType.EXPONENTIAL, close, trendLength) then 1 else -1;

# Calculate momentum
def momentum = (close - close[momentumLength]) / close[momentumLength];

# Calculate volatility
def volatility = AbsValue(Log(high / low));

# Plot trend line
plot trendLine = trend;
trendLine.SetDefaultColor(Color.CYAN);

# Plot momentum histogram
plot momentumHistogram = momentum;
momentumHistogram.AssignValueColor(if momentum >= momentumThreshold then Color.GREEN else Color.RED);
momentumHistogram.SetPaintingStrategy(PaintingStrategy.HISTOGRAM);
momentumHistogram.SetLineWeight(2);

# Plot volatility line
plot volatilityLine = volatility;
volatilityLine.SetDefaultColor(Color.BLUE);
volatilityLine.SetStyle(Curve.SHORT_DASH);

# Add alerts
alert(trendLine crosses above 0, "Bullish Trend", Alert.BAR, Sound.Bell);
alert(trendLine crosses below 0, "Bearish Trend", Alert.BAR, Sound.Bell);
alert(momentumHistogram crosses above momentumThreshold, "Strong Momentum Up", Alert.BAR, Sound.Chimes);
alert(momentumHistogram crosses below -momentumThreshold, "Strong Momentum Down", Alert.BAR, Sound.Chimes);
alert(volatilityLine crosses above volatilityThreshold, "High Volatility", Alert.BAR, Sound.Ring);
alert(volatilityLine crosses below volatilityThreshold, "Low Volatility", Alert.BAR, Sound.Ring);

reply to post135

this has a scale factor, that auto adjusts the histogram, so it will always be at full scale of line plot, 1 to -1.
added a secondary factor (fudge , 1.1 ) to scale it to , 1.1 to -1.1. because very few bars are near the extreme limits.


Code:
#chat135_momentum_trend

#https://usethinkscript.com/threads/chatgpt-bard-other-ai-scripts-which-cant-be-used-in-thinkorswim.13822/page-7#post-127783
#fluna  #135
#I can't get the momentum histogram to show at the same time as the Trend line.


# Trend Momentum Indicator (TMI) for Thinkorswim
# Developed by Fluna
Declare Lower;

def bn = barnumber();

# Input parameters
input trendLength = 14;
input momentumLength = 12;
input volatilityLength = 20;
input momentumThreshold = 0.5;
input volatilityThreshold = 1.0;

# Calculate trend direction
def trend = if close > MovingAverage(AverageType.EXPONENTIAL, close, trendLength) then 1 else -1;

# Calculate momentum
#def momentum = (close - close[momentumLength]) / close[momentumLength];
def momentum2 = (close - close[momentumLength]) / close[momentumLength];

# create a scale factor on bar #1 , to fit the histo to  1 to -1
def scale = if bn == 1 then 1/highestall(absvalue(momentum2)) else scale[1];

#create a factor, so histo extends to 1.1 to -1.1
input fudge = 1.1;
def momentum = momentum2 * scale * fudge;

# Calculate volatility
def volatility = AbsValue(Log(high / low));

# Plot trend line
plot trendLine = trend;
trendLine.SetDefaultColor(Color.CYAN);

# Plot momentum histogram
plot momentumHistogram = momentum;
momentumHistogram.AssignValueColor(if momentum >= momentumThreshold then Color.GREEN else Color.RED);
momentumHistogram.SetPaintingStrategy(PaintingStrategy.HISTOGRAM);
momentumHistogram.SetLineWeight(2);

# Plot volatility line
plot volatilityLine = volatility;
volatilityLine.SetDefaultColor(Color.BLUE);
volatilityLine.SetStyle(Curve.SHORT_DASH);

# Add alerts
alert(trendLine crosses above 0, "Bullish Trend", Alert.BAR, Sound.Bell);
alert(trendLine crosses below 0, "Bearish Trend", Alert.BAR, Sound.Bell);
alert(momentumHistogram crosses above momentumThreshold, "Strong Momentum Up", Alert.BAR, Sound.Chimes);
alert(momentumHistogram crosses below -momentumThreshold, "Strong Momentum Down", Alert.BAR, Sound.Chimes);
alert(volatilityLine crosses above volatilityThreshold, "High Volatility", Alert.BAR, Sound.Ring);
alert(volatilityLine crosses below volatilityThreshold, "Low Volatility", Alert.BAR, Sound.Ring);
#

mGIHUvC.jpg
 
can one help please. this code from chat has error:
# Define input parameters
input underlyingSymbol = "SPX";
input volatility = imp_volatility(underlyingSymbol);

# Get option data
def optionChain = OptionChain(underlyingSymbol, GetYYYYMMDD());
def strikeCount = optionChain.GetStrikeCount();
def closePrice = close(underlyingSymbol);

# Loop through each strike and calculate gamma exposure for call and put options
for i = 0 to strikeCount - 1 {
def strike = optionChain.GetStrike(i);
def callOption = optionChain.GetCall(i);
def putOption = optionChain.GetPut(i);
def callBidPrice = bid(callOption);
def callAskPrice = ask(callOption);
def callMidPrice = (callBidPrice + callAskPrice) / 2;
def putBidPrice = bid(putOption);
def putAskPrice = ask(putOption);
def putMidPrice = (putBidPrice + putAskPrice) / 2;
def callGamma = Gamma(closePrice, volatility);
def callGammaExposure = callGamma * callMidPrice * 100;
def putGamma = Gamma(closePrice, volatility);
def putGammaExposure = putGamma * putMidPrice * 100;

# Plot gamma exposure as horizontal lines on the chart
plot CallGEXLine = if IsNaN(close) then Double.NaN else callGammaExposure;
CallGEXLine.SetDefaultColor(Color.GREEN);
CallGEXLine.SetStyle(Curve.FIRM);
CallGEXLine.SetLineWeight(1);
CallGEXLine.HideBubble();
plot PutGEXLine = if IsNaN(close) then Double.NaN else putGammaExposure;
PutGEXLine.SetDefaultColor(Color.RED);
PutGEXLine.SetStyle(Curve.FIRM);
PutGEXLine.SetLineWeight(1);
PutGEXLine.HideBubble();


reply to post134

no, i don't think anyone can help you.
posting just 'help please' tells us nothing.
there are too many problems with this and you didn't explain what it is supposed to do.

you told chatgpt something to make this code? then edit your post and add it.

but i will guess what you want isn't possible.


here is a study that calcs open interest for many strikes, to give you an idea of how long and complex it can be, dealing with option data.
https://usethinkscript.com/threads/option-heatmap-and-oi-strikes-for-thinkorswim.10664/

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

errors

can't use input with a function , formula
input volatility = imp_volatility(underlyingSymbol);

there is no function called OptionChain()
def optionChain = OptionChain(underlyingSymbol, GetYYYYMMDD());

likewise, this doesn't exist. no easy way to determine what are valid strikes
= optionChain.GetStrikeCount()

there are no 'for' loops
for i = 0 to strikeCount - 1 {
thinkscript has fold
https://tlc.thinkorswim.com/center/reference/thinkScript/Reserved-Words/fold

can't set variables within a fold loop, can't use def
fold can read many variables, but when finished, with hold 1 number.

can't save a symbol to a valiable ( i'm guessing that is what is intended here? )
def callOption = optionChain.GetCall(i);
 
PLEASE HELP ME
Not sure if it's possible but, I need script so my watchlist will display EXACT LAST TRADED PRICE for stocks in afterhours session. Not Last closing price, not BID or ASK, no MARK price which is very misleading, but Last price of the stack value traded last - not always but should be betwen of BID ans ASK range.
I was able to find one for displaying EXACT LAST price on Chart, but I must have one in watchlist somehow. Is it anyone that can HELP?? Please.

P.S. This script for displaying last price on chart - but I need one in watchlist >

# After Hours Last Price
# Displays the exact last price of a stock during aftermarket trading session

declare lower;

# Define the aggregation period (e.g., 1 minute, 5 minutes, etc.)
input aggregationPeriod = AggregationPeriod.MIN;

# Calculate the aftermarket last price
def lastPrice = close(period = aggregationPeriod);
plot AfterHoursLastPrice = lastPrice;

# Customize the appearance of the plot
AfterHoursLastPrice.SetDefaultColor(color.white);
AfterHoursLastPrice.SetStyle(Curve.SHORT_DASH);

reply to post128

all your code is doing is plotting close, which is the close price of current bar.

the watchlist column already has a built in function , LAST , to do this.


ARZOgHr.jpg
 
All are plotting, the issue comes down to the mathematical results. Since your trend line will always be +1 or -1, the small values for your histogram and vol line results are much smaller values (.0011975 and .0044909, respectively, for 7/5/23) relative to the +/-1, so they're barely blips on the graph. Multiply the results of these by 10 or 100 to shift the decimal over and you'll now have results that will better show visual change in values against your +/-1 range.

Something like this is all you need:
Thank you emaguireiv, super helpfull!
 

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

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

87k+ Posts
238 Online
Create Post

Similar threads

Similar threads

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