Skip to main content
POST
/
searchStrategies
searchStrategies
curl --request POST \
  --url https://alphainsider.com/api/searchStrategies \
  --header 'Content-Type: application/json' \
  --data '
{
  "search": "<string>",
  "positions": {
    "includes": [
      "<string>"
    ],
    "excludes": [
      "<string>"
    ]
  },
  "sectors": {
    "includes": [
      "<string>"
    ],
    "excludes": [
      "<string>"
    ]
  },
  "type": {
    "includes": [
      "stock"
    ],
    "excludes": [
      "stock"
    ]
  },
  "max_drawdown": 123,
  "trade_count_min": 123,
  "trade_count_max": 123,
  "price_min": 123,
  "price_max": 123,
  "timeframe": "month",
  "sort": "top",
  "limit": 123,
  "offset_id": "<string>"
}
'
{
  "success": true,
  "response": [
    {
      "strategy_id": "RXKyIAbn7iUy0IPdPg18T",
      "product_id": "vAXJP6VnKsEJeUgs36ao0",
      "user_id": "TradingViewTracker",
      "type": "cryptocurrency",
      "private": false,
      "name": "Voss Strategy (Filter + Trend Indicator) [Bitduke] by Bitduke",
      "description": "Created strategy based on Voss Predictive Filter, implemented by TradingView user e2e4mfck. \n\nVoss Predictive Filter \n\nThis is a relatively new filter from John F. Ehlers  article,  A Peek Into The Future .  Ehlers describes the calculation of a new filter that could help signal cyclical turning points in markets. \n\nBut filter has a negative group delay and while an indicator based on it cannot actually see into the future, it may provide the trader with signals in advance of other indicators.  \n\nTrading View Link: https://www.tradingview.com/script/CymW3DRi-Voss-Strategy-Filter-Trend-Indicator-Bitduke/\n(If you're the owner of this script and would like to delete it. Please contact me: miami_coder@protonmail.com)",
      "updated_at": "2024-10-15T20:42:57.868Z",
      "created_at": "2023-01-09T19:31:05.177Z",
      "price": 0,
      "subscriber_count": "200",
      "timeframes": [
        {
          "timeframe": "week",
          "rank_performance": "25",
          "rank_popular": "6",
          "rank_trending": "2",
          "rank_top": "5",
          "max_drawdown": "0.008102630749388",
          "past_value": "17.121975147643069"
        },
        {
          "timeframe": "year",
          "rank_performance": "1",
          "rank_popular": "6",
          "rank_trending": "1",
          "rank_top": "1",
          "max_drawdown": "0.051727391692518",
          "past_value": "2.258474326291726"
        },
        {
          "timeframe": "month",
          "rank_performance": "720",
          "rank_popular": "6",
          "rank_trending": "2",
          "rank_top": "74",
          "max_drawdown": "0.007996851899074",
          "past_value": "18.950175146020312"
        },
        {
          "timeframe": "day",
          "rank_performance": "748",
          "rank_popular": "6",
          "rank_trending": "748",
          "rank_top": "748",
          "max_drawdown": "0.004051215253596",
          "past_value": "18.122730158452871"
        },
        {
          "timeframe": "five_year",
          "rank_performance": "1",
          "rank_popular": "6",
          "rank_trending": "2",
          "rank_top": "1",
          "max_drawdown": "0.050710664377589",
          "past_value": "1.000000000000000"
        }
      ]
    }
  ]
}

Headers

Authorization
string<JWT>

User API token.

Body

application/json

Term to search for.

positions
object

Filter by current stock positions.

sectors
object

Filter by sector.

type
object

Filter by strategy security type.

max_drawdown
number

Filter by max drawdown.

trade_count_min
number

Filter by minimum trade count.

trade_count_max
number

Filter by maximum trade count.

price_min
number

Filter by minimum price.

price_max
number

Filter by maximum price.

timeframe
enum<string>
default:month

Gets strategy values based on timeframe.

Available options:
day,
week,
month,
year,
five_year
sort
enum<string>
default:top

Sort results by.

Available options:
top,
trending,
performance,
popular,
newest
limit
number

Number of results to return.

offset_id
string

Offet by ID. Used for pagination.

Response

Request was successful.