Sticky Note Pro: Customizable Trading ChecklistStay organized and disciplined with this customizable sticky note on your TradingView chart. Perfect for traders who want to keep essential trading reminders, checklists, or notes visible while analyzing the market.
### Features:
- **Customizable Templates**: Choose from a **Trading Checklist**, **Risk Management**, or **Custom** template.
- **Section Customization**: Tailor the titles and content for up to three sections:
- 📊 **Analysis**: Track trend direction and support/resistance levels.
- 💰 **Risk Management**: Ensure proper risk management with reminders for risk percentage and stop loss settings.
- 🧠 **Psychology**: Stay disciplined with reminders to stick to your plan and avoid overtrading.
- **Dynamic Content**: Add or hide sections based on your preference, with dynamic spacing and content formatting.
- **Visual Customization**: Change text and background colors, and adjust text size and line spacing for optimal visibility.
- **Chart Integration**: The sticky note is displayed on the top-right corner of your chart and updates with the most recent bar.
### Why Use This Indicator?
This tool helps you stay on track with your trading plan, offering reminders for analysis, risk management, and trading psychology, all in one convenient place. Customize it to fit your style, and never miss a key point during your trading sessions again.
List
Tick Volume Direction IndicatorTick Volume Direction Indicator
This indicator captures:
• tick volume
• tick direction
The settings are as follows:
• volume or base currency value selection.
• label distance (away from the low of the candle).
• Tick volume - on/off switch for tick volume.
• label size.
• Up tick move color.
• tick move absorbed - when the tick doesn't change position.
• Down tick move.
On the first initial load, it will have the existing volume data as "?" as tradingview doesn't have a history of each tick.
Be aware, any settings change you make will refresh the tick data from start.
This indicator is one of the best real-time ways of seeing buying and selling pressure.
Data structure ListThe script shows a workaround for list in pine-script via drawings.
There are few restrictions with them:
1. The size of the list cannot be more that amount of allowed drawings (about 40 by now)
2. Because the list shares the space of drawings throughout the whole script, using drawings with the list must be careful, with handly creating and removing of each drawing, because otherwise pine's garbage collector might break the list
3. Setters and Getters must be called on every bar, because of implementation of functions in pine there are inner serieses, which must be updated on every bar. So wherever you have a setter or getter in the code - it must be called on every bar. But if it's just an update, then you should pass 'false' as a param of the funtion.
And an example of using the list - reversing of the list. When the list have been created, it's filled on every bar and then gets reversed. Plots show result before and after reversing of the list.
There are also some pieces of commented code showing possible way of working with another funtions of the list.