Stochastic/RSI Indicator Creation
Budget: $250 – $750 USD
Looking for someone to create the Stochastic/RSI indicator. The output must work for timeframes: 1D, 8H, 6H, 3H, and 1H. Only use endpoints from Polygon.io (there are some TradingView JS code segments that might be useful too). There are Stochastic indicators and RSI indicators but I'm looking for the Stochastic/RSI indicator with the typical lengths of: K of 3, D of 3, RSI length of 14, and Stochastic length of 14. The output will be JSON output as before. Something like the following. The data is fake but the parameters are what I'm looking for:
{
"results" : {
"values" : [
{
"value_k" : 15.145634876,
"value_d" : 76.0282347334,
"rsi" : 65.9572155514467,
"c" : 210.34,
"dt_str" : "2025-05-12 13:00:00",
"t" : 1747069200000
},
{
"c" : 209.23,
"dt_str" : "2025-05-12 10:00:00",
"value_k" : 16.945828376,
"value_d" : 77.028234577,
"rsi" : 64.5478755099711,
"t" : 1747058400000,
},
...
...
...
{
"dt_str" : "2025-05-12 07:00:00",
"c" : 208.53,
"rsi" : 63.6670668960345,
"value_k" : 34.9877661531839,
"value_d" : 4.838723731839,
"t" : 1747047600000,
}
],
"sym" : "AMZN"
}
}
{
"results" : {
"values" : [
{
"value_k" : 15.145634876,
"value_d" : 76.0282347334,
"rsi" : 65.9572155514467,
"c" : 210.34,
"dt_str" : "2025-05-12 13:00:00",
"t" : 1747069200000
},
{
"c" : 209.23,
"dt_str" : "2025-05-12 10:00:00",
"value_k" : 16.945828376,
"value_d" : 77.028234577,
"rsi" : 64.5478755099711,
"t" : 1747058400000,
},
...
...
...
{
"dt_str" : "2025-05-12 07:00:00",
"c" : 208.53,
"rsi" : 63.6670668960345,
"value_k" : 34.9877661531839,
"value_d" : 4.838723731839,
"t" : 1747047600000,
}
],
"sym" : "AMZN"
}
}