v5.19.0
Your data no longer has to be a file. This release connects indicators to live feeds: run a small WebSocket or SSE server, point
sources.DataFeed at it, and records reach the chart as your server publishes them.Added
- Live data feeds.
sources.DataFeed(url, stale_after=...)streams typed records from your own server into@data_contextcallbacks andrequest_series, next to the CSV path that shipped in v5.18.0. The launch history settings warm the series up from recent records, reconnects after platform-side interruptions are healed from a recent-record buffer on a best-effort basis, and a launch with a date range computes over the window and finishes. See Live data from a feed.
v5.18.0
This release opens Indie to data it never had access to before — your own CSV feeds — and gives you dictionaries to organise what you collect along the way. You can chart macro figures, on-chain metrics or your own trading journal next to price, and keep per-level statistics, such as how often a price level was touched, in a single pass over the series.
Added
- Dictionary containers.
dict[K, V]is now a built-in container type: assign, read, and delete items by key, get the item count withlen(), and take snapshots of the contents withkeys()andvalues(). Keys can bestr,int,bool, or finitefloat, and containers can be nested — a dictionary value may hold another dictionary, a list, anOptional, or a tuple pair. - External data sources. Use your own data in indicators: point
sources.Csvat a public HTTPS CSV file and read it as candles with@sec_context, as typed rows with@data_context, or directly withrequest_series. Indicators that use external data cannot be published to the Marketplace. See External data.
v5.17.0
Tables turn an indicator into a readable summary: put session statistics, signal counts or risk numbers straight on the chart, instead of asking the reader to hover over a line to find them.
Added
- Table drawings. Build tables on charts with
Table,TableRow, andTableCellfromindie.drawings.
v5.16.0
This release turns your AI assistant into a hands-on co-pilot: through the MCP server it can now build and manage your Indie scripts and your alerts end-to-end, signing in with your TakeProfit account — no extra credentials to set up.
Added
- Manage Indie scripts from AI. New MCP tools let the AI create, read, update, and run your Indie scripts directly — so you can build and edit indicators from a chat instead of switching to the IDE.
- Manage alerts from AI. New MCP tools give the AI full control over alerts — create, read, update, and delete them, turn them on or off, preview before saving, inspect their schema, and review trigger history — all from a conversation.
- Richer alert messages. An alert message can now reference any plot of an indicator used in the alert, not just the series directly involved in the condition — so notifications can include more of what the indicator calculates.
- Simpler MCP sign-in. The MCP server now authenticates with your existing TakeProfit platform account — no separate API keys or credentials required.
v5.15.0
A calculation error in one indicator no longer takes the chart down with it — the indicator keeps the history it already has and offers you a refresh.
Added
- Light theme support in the IDE widget.
- Indicator recovery: if a calculation error occurs, the indicator now recovers gracefully and shows available history with a refresh button, instead of crashing.
Fixed
- Fixed the save function in the IDE.
v5.14.0
Signals can now be calculated on a faster timeframe than the one you are watching: the logic runs on the minute chart while you keep the hourly view. And your AI assistant can search both the built-in library and the Marketplace, so it can point you at an existing indicator instead of writing one from scratch.
Added
Context.calc_onnow supports requesting data from lower timeframes than the current chart. Previously only higher timeframes were supported.- New MCP tools for indicator discovery:
TakeProfit_SearchBuiltinsIndicators: search built-in indicators by name, title, or abbreviation.TakeProfit_SearchMarketplaceIndicators: search community indicators in the Marketplace — LLM can now recommend indicators by description.
- MCP OAuth authentication through TakeProfit platform account.
- MCP back-to-back endpoint enabling MCP tools to be used from the AI Chat without additional auth setup.
v5.13.0
Indicators can now draw the shapes analysts draw by hand — rectangles for zones, channels for trends — programmatically, on every bar that matches your rule.
Added
- New types of drawing tools: rectangles, circles, triangles, channels
- Canonical line-style enum for drawing APIs:
indie.line_style
v5.12.0
The AI can now run a script against the real runtime before you paste it into the IDE, so the code it hands you is code that actually works.
Added
- New tool in MCP for runtime validation of scripts.
v5.11.0
Strategies can now be measured instead of argued about: run one over history and read the equity curve, the drawdown and the full trade log.
Added
- Backtesting functionality.
v5.10.0
An indicator can now recolour the candles themselves — highlight volume spikes, trend shifts or your own pattern directly on the price bars, without adding a separate pane.
Added
- New series-based plotting capability:
@indie.plot.bar_color: recolors the bars/candles on the chart.
v5.10.0
This release makes Indie a strategy language, not only an indicator one: a script can place orders, manage a position and be tested on history with your own capital, commission and leverage settings.
Added
- Trading strategies and backtesting functionality:
@indie.strategydecorator for creating trading strategies with configurable parameters:initial_capitalcommissionleverageintrabar_order_filtermarket_order_pricerisk_free_rate
indie.MainStrategyContextclass extendingMainContextwithtradingproperty for order management.- New package
indie.strategiesfor trading and backtesting:- Classes:
AmendOrderBuilderCommissionExitOrderOrderPlaceOrderBuilderPositionStopTrading
- Enums:
commission_typeintrabar_order_filtermarket_order_priceorder_execution_typeorder_sideorder_status
- Classes:
- Built-in strategies: ADX Breakout Strategy, Consecutive Up/Down Strategy, InSide Bar Strategy, MACD Strategy, Momentum Strategy, MovingAvg Cross, OutSide Bar Strategy, Price Channel Strategy, Relative Strength Index Strategy.
v5.9.0
v5.8.0
Added
- Algorithms:
indie.algorithms.Percentileindie.algorithms.PivotHighLow
- New helper color
color.TRANSPARENT. - Package
sortedcontainerswith classSortedList. - MCP (Model Context Protocol) server support for Claude integration via the Claude web interface.
v5.7.0
Added
- Practical guide to common drawing patterns in Indie indicators.
- New colors:
color.PINK,color.ORANGEandcolor.BROWN. - Built-in indicator Linear Regression Channel.
v5.6.0
Added
- New series-based plotting capability:
@indie.plot.background: recolors the background of the chart pane.
- Built-in indicator Trading Sessions.
v5.5.0
Added
- MCP (Model Context Protocol) server support for Claude Desktop integration.
- Documentation guide for MCP server installation and configuration.
v5.4.0
Added
- Non-series drawing objects support:
indie.drawings.LabelAbs,indie.drawings.LabelRel: text labels with absolute and relative positioning.indie.drawings.LineSegment: customizable line segments with various styles and endpoints.indie.drawings.Chart: class for managing drawing objects withdraw(),erase(), andclean()methods.
- Built-in indicators Pivot Points High/Low, Pivot Points Standard and Zig Zag.
v5.3.0
Added
@indie.plot.marker: plots circles, crosses and labels (with optional text) above/below candles on the chart.- Built-in indicators MA Cross and Parabolic Stop And Reverse.
v5.2.0
Added
- Built-in indicator Least Squares Moving Average.
- Algorithms:
indie.algorithms.Macdindie.algorithms.Mfiindie.algorithms.Sarindie.algorithms.SinceTrueindie.algorithms.Uo
- Package
indie.mathwith functions:crosscross_overcross_underdivide
- Methods of class
datetime.datetime:strptimetimestamp
Changed
- Updated return type of algorithms:
indie.algorithms.SinceHighestindie.algorithms.SinceLowest
v5.0.0
Added
- Indie language v5 support:
indie.plotis now a package, not a decorator.- Decorators renamed:
- Support of Indie v4 -> v5 migrations in Code Migrator.
display_optionsparameter for@plot.*decorators.
Removed
- Indie language v4 support.
- Deprecated decorator
@param.string, use@param.strinstead. - Deprecated field
SymbolInfo.marketdata_timezone, useSymbolInfo.timezoneinstead. - Deprecated function
tf, useTimeFrame.from_strinstead. - Deprecated enum
WeekDay, useweek_dayinstead.
v4.5.0
Added
- Built-in indicator Correlation Coefficient.
- Algorithms
indie.algorithms.Corrandindie.algorithms.LinReg.
v4.4.0
Added
- Introducing
indie.TradingSessionandindie.schedule.Scheduleclasses for trading sessions support.
v4.3.0
Added
- Support of
indie.Var[T]container which is like aindie.MutSeries[T]but with history depth of 1.
v4.2.0
Added
- Expanded OOP support: it is now possible to create custom classes with fields and methods, or to add methods to the
descendants of
indie.Algorithm,indie.MainContext, orindie.SecContext.
v4.1.0
Added
- Generic data types
indie.Series[T]andindie.MutSeries[T]. At the momentTcan be any offloat,int,bool,strtypes.
v4.0.0
v3.0.0
Added
- Indie language v3 support:
- Package renamed
indie.algorithm->indie.algorithms. - Renamed all algorithms in
indie.algorithmpackage to CamelCase, e.g.std_dev->StdDev Algorithm.new()syntactic sugar method was introduced.- Added
selfto every@func-decorated function as the first parameter. - Renamed decorator
@func->@algorithm. Introduced base classindie.Algorithm. - Renamed
def main(ctx)->def Main(self). Introduced base classindie.MainContext. - Syntactic sugar function
mut_seriesis replaced withMutSeriesF.new(). - Classes renamed:
MutSeries->MutSeriesF,Series->SeriesF. - Renamed decorator
@ctx_func->@sec_context. Introduced base classindie.SecContext. - Renamed the first parameter of a secondary context
ctx->self. - Renamed parameter
ctx_func->sec_contextof the functionContext.calc_on. - Changed signatures of algorithms:
indie.algorithm.since_lowest,indie.algorithm.since_highestindie.algorithm.lowest,indie.algorithm.highestindie.algorithm.adxindie.algorithm.atrindie.algorithm.donchianindie.algorithm.maindie.algorithm.mfvindie.algorithm.net_volumeindie.algorithm.supertrendindie.algorithm.trindie.algorithm.vwapindie.algorithm.vwma- plus all algorithms now return
SeriesFtypes instead ofMutSeriesF.
- Package renamed
- Indie Code Migrator microservice for automatic migration of Indie source code from v2 to v3.
Removed
- Indie language v2 support.
v2.1.0
Added
Context.is_lastandContext.is_realtime.inoperator support.lookaheadparam toContext.calc_on.
v2.0.0
v1.12.0
Added
- Built-in indicators: Accumulation/Distribution, Advance/Decline Ratio (Bars), Average Directional Index, Arnaud Legoux Moving Average, Bull Bear Power, Bollinger Bands Width, Commodity Channel Index, Chande Momentum Oscillator, Choppiness Index, Chop Zone, Chande Kroll Stop, Chaikin Money Flow, Coppock Curve, Connors RSI, Donchian Channels, Directional Movement Index, Detrended Price Oscillator, Elders Force Index, Ease of Movement, Fisher Transform, Hull Moving Average, Keltner Channels, Klinger Oscillator, Know Sure Thing, Moving Average Ribbon, Mass Index, McGinley Dynamic, Median, Net Volume, On Balance Volume, Price Oscillator, Price Volume Trend, Rate Of Change, Relative Vigor Index, Relative Volatility Index, SMI Ergodic Indicator, SMI Ergodic Oscillator, Smoothed Moving Average, Triple EMA, TRIX, True Strength Indicator, Ultimate Oscillator, Volume Oscillator, Vortex Indicator, Williams Percent Range, Woodies CCI.
v1.2.0
Added
- The first chapters of Indie documentation were published on
https://takeprofit.com/docs/indie/.
v1.1.0
Added
- Built-in indicators: Average Day Range, Aroon, Average True Range, Awesome Oscillator, Bollinger Bands, Balance of Power, Double EMA, Exponential Moving Average, Envelope, Ichimoku Cloud, Moving Average Convergence Divergence, Momentum, Money Flow Index, Relative Strength Index, Simple Moving Average, Williams Alligator, Moving Average Weighted.
v1.0.0
Added
- ‘Indicators Code Editor’ widget was added to the TakeProfit platform. This can be considered as Indie language v1 release.