Beginning to time 840 covers Intro and Key Settings for TOS Program; time 840 to 4550 covers Charts and their features including Studies, Drawings,Flexible Grid, Multiple Windows, Chart Sidebar,Time Periods,Linking,Active Trader feature,Scan Menu, Alerts and Options time 4550 to 2:38:00 is dedicated to Basic Coding Concepts, examples of coded scripts, quizzes on same with progression from simple to advanced
if U can direct me to a Video on how U incorporate High , Low , Open Close using script . say your script is set to trigger at a 1% pop in 1minute BAR would U replace close with High ? .
outstanding presentation.. clear, concise and comprehensive
I comprehend more in 2 hrs from you than days and days of reading and watching videos
Beginning to time 840 covers Intro and Key Settings for TOS Program;
time 840 to 4550
covers Charts and their features including
Studies, Drawings,Flexible Grid, Multiple Windows, Chart Sidebar,Time Periods,Linking,Active Trader feature,Scan Menu, Alerts and Options
time 4550 to 2:38:00
is dedicated to Basic Coding Concepts, examples of coded scripts, quizzes on same with progression from simple to advanced
Very few sources take the time to do this for free. great work Trey 👍
ThinkorSwim has comprehensive tutorials to learn Thinkscript already built in for free. Highly recommended.
Not found them helpful. Plus the Help inside the app. The Technical Support team yes..real humans not AI
As part of the summary review points at the end, remember the indexing operator []
if U can direct me to a Video on how U incorporate High , Low , Open Close using script . say your script is set to trigger at a 1% pop in 1minute BAR would U replace close with High ? .
def onePercentPop = close >= high[1] * 1.01;