getRecommendedStrategies
curl --request GET \
--url https://alphainsider.com/api/getRecommendedStrategiesconst options = {method: 'GET'};
fetch('https://alphainsider.com/api/getRecommendedStrategies', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://alphainsider.com/api/getRecommendedStrategies"
response = requests.get(url)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://alphainsider.com/api/getRecommendedStrategies",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://alphainsider.com/api/getRecommendedStrategies"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"success": true,
"response": [
{
"strategy_id": "SBVZIDvZUIKbjNEgst136",
"product_id": "ejH4ubCDd4ZE1-c_HbZ97",
"user_id": "TradingViewTracker",
"type": "cryptocurrency",
"private": false,
"name": "Stochastic Pop and Drop by Jake Bernstein v1 [Bitduke] Strategy by Bitduke",
"description": "I found a simple strategy by Jake Bernstein, modified it a little and created a strategy with Risk Management System (SL+TP); After that I test it on the different cryptocurrency pairs.\n\nAbout the Indicator\n\nBasically it's the strategy of 2 indicators: Stochastic Oscillator to define the bias and Average Directional Index to confirm it.\n\nOne again, It uses Stochastic Oscillator to define the trading bias. In particular, the trading bias was deemed bullish when the weekly 14-period Stochastic \n\nTrading View Link: https://www.tradingview.com/script/kWhNGFXX-Stochastic-Pop-and-Drop-by-Jake-Bernstein-v1-Bitduke/\n(If you're the owner of this script and would like to delete it. Please contact me: miami_coder@protonmail.com)",
"categories": [
"other"
],
"updated_at": "2024-10-15T20:42:57.868Z",
"created_at": "2023-01-09T20:06:20.135Z",
"price": 0,
"subscriber_count": "6",
"timeframes": [
{
"timeframe": "month",
"rank_performance": "2",
"rank_popular": "81",
"rank_trending": "3",
"rank_top": "2",
"max_drawdown": "0.006328815588562",
"past_value": "1.433831509646664"
},
{
"timeframe": "day",
"rank_performance": "23",
"rank_popular": "81",
"rank_trending": "24",
"rank_top": "23",
"max_drawdown": "0.006067663028796",
"past_value": "1.723784987032618"
},
{
"timeframe": "year",
"rank_performance": "47",
"rank_popular": "81",
"rank_trending": "50",
"rank_top": "47",
"max_drawdown": "0.047444028894143",
"past_value": "0.976968351294703"
},
{
"timeframe": "week",
"rank_performance": "8",
"rank_popular": "81",
"rank_trending": "9",
"rank_top": "9",
"max_drawdown": "0.007024010674107",
"past_value": "1.654229932055940"
},
{
"timeframe": "five_year",
"rank_performance": "112",
"rank_popular": "81",
"rank_trending": "117",
"rank_top": "112",
"max_drawdown": "0.047258723825134",
"past_value": "1.000000000000000"
}
]
}
]
}{
"success": false,
"response": "Request failed."
}Strategies
getRecommendedStrategies
Get recommended strategies.
GET
/
getRecommendedStrategies
getRecommendedStrategies
curl --request GET \
--url https://alphainsider.com/api/getRecommendedStrategiesconst options = {method: 'GET'};
fetch('https://alphainsider.com/api/getRecommendedStrategies', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://alphainsider.com/api/getRecommendedStrategies"
response = requests.get(url)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://alphainsider.com/api/getRecommendedStrategies",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://alphainsider.com/api/getRecommendedStrategies"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"success": true,
"response": [
{
"strategy_id": "SBVZIDvZUIKbjNEgst136",
"product_id": "ejH4ubCDd4ZE1-c_HbZ97",
"user_id": "TradingViewTracker",
"type": "cryptocurrency",
"private": false,
"name": "Stochastic Pop and Drop by Jake Bernstein v1 [Bitduke] Strategy by Bitduke",
"description": "I found a simple strategy by Jake Bernstein, modified it a little and created a strategy with Risk Management System (SL+TP); After that I test it on the different cryptocurrency pairs.\n\nAbout the Indicator\n\nBasically it's the strategy of 2 indicators: Stochastic Oscillator to define the bias and Average Directional Index to confirm it.\n\nOne again, It uses Stochastic Oscillator to define the trading bias. In particular, the trading bias was deemed bullish when the weekly 14-period Stochastic \n\nTrading View Link: https://www.tradingview.com/script/kWhNGFXX-Stochastic-Pop-and-Drop-by-Jake-Bernstein-v1-Bitduke/\n(If you're the owner of this script and would like to delete it. Please contact me: miami_coder@protonmail.com)",
"categories": [
"other"
],
"updated_at": "2024-10-15T20:42:57.868Z",
"created_at": "2023-01-09T20:06:20.135Z",
"price": 0,
"subscriber_count": "6",
"timeframes": [
{
"timeframe": "month",
"rank_performance": "2",
"rank_popular": "81",
"rank_trending": "3",
"rank_top": "2",
"max_drawdown": "0.006328815588562",
"past_value": "1.433831509646664"
},
{
"timeframe": "day",
"rank_performance": "23",
"rank_popular": "81",
"rank_trending": "24",
"rank_top": "23",
"max_drawdown": "0.006067663028796",
"past_value": "1.723784987032618"
},
{
"timeframe": "year",
"rank_performance": "47",
"rank_popular": "81",
"rank_trending": "50",
"rank_top": "47",
"max_drawdown": "0.047444028894143",
"past_value": "0.976968351294703"
},
{
"timeframe": "week",
"rank_performance": "8",
"rank_popular": "81",
"rank_trending": "9",
"rank_top": "9",
"max_drawdown": "0.007024010674107",
"past_value": "1.654229932055940"
},
{
"timeframe": "five_year",
"rank_performance": "112",
"rank_popular": "81",
"rank_trending": "117",
"rank_top": "112",
"max_drawdown": "0.047258723825134",
"past_value": "1.000000000000000"
}
]
}
]
}{
"success": false,
"response": "Request failed."
}Headers
User API token.
Query Parameters
Array of strategy IDs.
Maximum array length:
100AlphaInsider strategy identifier.
Time window used for ranking or performance data.
Available options:
day, week, month, year, five_year Number of results to return.
⌘I