Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 27 additions & 27 deletions docs/api-coverage.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
layout: default
title: API Coverage
nav_order: 6
nav_order: 9
permalink: /api-coverage/
has_children: true
---
Expand All @@ -12,32 +12,32 @@ This is a list of all the functions in the Pine Script API and their implementat

## Key

- ✅ Implemented and Tested
- ✔️ Implemented but needs testing
- ❌ Not implemented
- ⏳ In progress
- ✅ Implemented and Tested
- ✔️ Implemented but needs testing
- ❌ Not implemented
- ⏳ In progress

---

- [Input](./api-coverage/input.md)
- [Math](./api-coverage/math.md)
- [Technical Analysis](./api-coverage/ta.md)
- [Array](./api-coverage/array.md)
- [Box](./api-coverage/box.md)
- [Chart](./api-coverage/chart.md)
- [Color](./api-coverage/color.md)
- [Label](./api-coverage/label.md)
- [Line](./api-coverage/line.md)
- [Linefill](./api-coverage/linefill.md)
- [Log](./api-coverage/log.md)
- [Map](./api-coverage/map.md)
- [Matrix](./api-coverage/matrix.md)
- [Plot](./api-coverage/plot.md)
- [Request](./api-coverage/request.md)
- [String](./api-coverage/string.md)
- [Strategy](./api-coverage/strategy.md)
- [Table](./api-coverage/table.md)
- [Syminfo](./api-coverage/syminfo.md)
- [Runtime](./api-coverage/runtime.md)
- [Polyline](./api-coverage/polyline.md)
- [Others](./api-coverage/others.md)
- [Input](./api-coverage/input.md)
- [Math](./api-coverage/math.md)
- [Technical Analysis](./api-coverage/ta.md)
- [Array](./api-coverage/array.md)
- [Box](./api-coverage/box.md)
- [Chart](./api-coverage/chart.md)
- [Color](./api-coverage/color.md)
- [Label](./api-coverage/label.md)
- [Line](./api-coverage/line.md)
- [Linefill](./api-coverage/linefill.md)
- [Log](./api-coverage/log.md)
- [Map](./api-coverage/map.md)
- [Matrix](./api-coverage/matrix.md)
- [Plot](./api-coverage/plot.md)
- [Request](./api-coverage/request.md)
- [String](./api-coverage/string.md)
- [Strategy](./api-coverage/strategy.md)
- [Table](./api-coverage/table.md)
- [Syminfo](./api-coverage/syminfo.md)
- [Runtime](./api-coverage/runtime.md)
- [Polyline](./api-coverage/polyline.md)
- [Others](./api-coverage/others.md)
42 changes: 21 additions & 21 deletions docs/architecture/index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
layout: default
title: Architecture
nav_order: 4
nav_order: 7
has_children: true
permalink: /architecture/
---
Expand Down Expand Up @@ -50,29 +50,29 @@ PineTS bridges the gap between Pine Script's unique time-series semantics and st

### Core Architecture

- [Transpiler Architecture](./transpiler/index.md): Details on AST parsing, scope analysis, and code transformation.
- [Scope Manager](./transpiler/scope-manager.md): Variable renaming and unique ID generation
- [Transformers](./transpiler/transformers.md): AST transformation logic
- [Real Examples](./transpiler/examples.md): Actual transpilation output examples
- [Runtime Engine](./runtime/index.md): How the `Context`, `Series`, and execution loop work.
- [Context Class](./runtime/context.md): The global state object
- [Series Class](./runtime/series.md): Forward storage with reverse access
- [Execution Flow](./runtime/execution-flow.md): Run loop and pagination
- [Namespaces](./namespaces/index.md): Implementation of `ta`, `math`, `request`, etc.
- [Technical Analysis (ta)](./namespaces/ta.md): TA functions implementation
- [Math (math)](./namespaces/math.md): Mathematical operations
- [Array (array)](./namespaces/array.md): Array operations
- [Request (request)](./namespaces/request.md): Multi-timeframe analysis
- [Input (input)](./namespaces/input.md): User input handling
- [Critical Implementation Details](./specifics/index.md): Deep dives into tuple handling, `request.security`, and other complex features.
- [Tuple Handling](./specifics/tuples.md): Double bracket convention
- [Request Security](./specifics/request-security.md): Secondary context architecture
- [Transpiler Architecture](./transpiler/index.md): Details on AST parsing, scope analysis, and code transformation.
- [Scope Manager](./transpiler/scope-manager.md): Variable renaming and unique ID generation
- [Transformers](./transpiler/transformers.md): AST transformation logic
- [Real Examples](./transpiler/examples.md): Actual transpilation output examples
- [Runtime Engine](./runtime/index.md): How the `Context`, `Series`, and execution loop work.
- [Context Class](./runtime/context.md): The global state object
- [Series Class](./runtime/series.md): Forward storage with reverse access
- [Execution Flow](./runtime/execution-flow.md): Run loop and pagination
- [Namespaces](./namespaces/index.md): Implementation of `ta`, `math`, `request`, etc.
- [Technical Analysis (ta)](./namespaces/ta.md): TA functions implementation
- [Math (math)](./namespaces/math.md): Mathematical operations
- [Array (array)](./namespaces/array.md): Array operations
- [Request (request)](./namespaces/request.md): Multi-timeframe analysis
- [Input (input)](./namespaces/input.md): User input handling
- [Critical Implementation Details](./specifics/index.md): Deep dives into tuple handling, `request.security`, and other complex features.
- [Tuple Handling](./specifics/tuples.md): Double bracket convention
- [Request Security](./specifics/request-security.md): Secondary context architecture

### Developer Resources

- [Debugging Guide](./debugging.md): Practical debugging techniques and common issues
- [Best Practices](./best-practices.md): Common pitfalls and recommended patterns
- [Syntax Evolution](./syntax-evolution.md): Migration from old to new syntax
- [Debugging Guide](./debugging.md): Practical debugging techniques and common issues
- [Best Practices](./best-practices.md): Common pitfalls and recommended patterns
- [Syntax Evolution](./syntax-evolution.md): Migration from old to new syntax

## Key Design Principles

Expand Down
Loading
Loading