textarea
Syntax
Parameters
Return Value
Example
// Example: Notes field
input.textarea(
'Strategy Notes',
'Enter your notes here...',
undefined,
'Add optional comments or explanations',
'General Settings'
);
// Example: List of symbols
input.textarea(
'Watchlist Symbols',
'AAPL, MSFT, TSLA',
undefined,
'Comma-separated list of tickers',
'Symbols'
);
// Later in your script:
// inputs[userNotes.id] → text written by user
// inputs[watchlistSymbols.id] → 'AAPL, MSFT, TSLA'Result

Last updated