Skip to Content

My Screener Strategies

Get the list of custom stock screener strategies created by the currently logged-in user.

CLI
longbridge screener strategies --mine

Parameters

SDK method parameters.

This method takes no parameters (login required).

Request Example

Response

Response Example

json
{
  "code": 0,
  "message": "success",
  "data": {
    "screeners": [
      {
        "id": 42,
        "name": "My Growth Strategy",
        "average_day_chg": "+1.24%",
        "stocks": ["NVDA.US", "AMD.US"],
        "groups": [
          {
            "group_name": "Growth",
            "indicators": [
              { "id": 30, "key": "filter_revenue_growth", "name": "Revenue Growth", "unit": "%", "min": 20, "max": null }
            ]
          }
        ]
      }
    ]
  }
}

Response Status

StatusDescriptionSchema
200SuccessScreenerStrategiesResponse
400Bad requestNone

Schemas

ScreenerStrategiesResponse

The response structure is identical to screener_recommend_strategies. Please refer to that document for the Schema definition.