POST api/data/analysis/all

Get the analysis of what the bot has learned for all of symbol

Request Information

URI Parameters

None.

Body Parameters

DashboardInput
NameDescriptionTypeAdditional information
Symbol

string

None.

Timeframe

string

None.

MinPip

integer

None.

MaxPip

integer

None.

SecurityToken

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Symbol": "sample string 1",
  "Timeframe": "sample string 2",
  "MinPip": 3,
  "MaxPip": 4,
  "SecurityToken": "sample string 5"
}

Response Information

Resource Description

Collection of Analysis
NameDescriptionTypeAdditional information
Symbol

string

None.

Timeframe

string

None.

PatternCount

integer

None.

TestedPatternCount

integer

None.

AveragePips

integer

None.

TradesCount

integer

None.

BVS

Collection of ChartItem

None.

WVL

Collection of ChartItem

None.

WVLS

Collection of ChartItem

None.

WVLB

Collection of ChartItem

None.

WinRate

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Symbol": "sample string 1",
    "Timeframe": "sample string 2",
    "PatternCount": 3,
    "TestedPatternCount": 4,
    "AveragePips": 5,
    "TradesCount": 6,
    "BVS": [
      {
        "Title": "sample string 1",
        "Count": 2
      },
      {
        "Title": "sample string 1",
        "Count": 2
      }
    ],
    "WVL": [
      {
        "Title": "sample string 1",
        "Count": 2
      },
      {
        "Title": "sample string 1",
        "Count": 2
      }
    ],
    "WVLS": [
      {
        "Title": "sample string 1",
        "Count": 2
      },
      {
        "Title": "sample string 1",
        "Count": 2
      }
    ],
    "WVLB": [
      {
        "Title": "sample string 1",
        "Count": 2
      },
      {
        "Title": "sample string 1",
        "Count": 2
      }
    ],
    "WinRate": 7.1
  },
  {
    "Symbol": "sample string 1",
    "Timeframe": "sample string 2",
    "PatternCount": 3,
    "TestedPatternCount": 4,
    "AveragePips": 5,
    "TradesCount": 6,
    "BVS": [
      {
        "Title": "sample string 1",
        "Count": 2
      },
      {
        "Title": "sample string 1",
        "Count": 2
      }
    ],
    "WVL": [
      {
        "Title": "sample string 1",
        "Count": 2
      },
      {
        "Title": "sample string 1",
        "Count": 2
      }
    ],
    "WVLS": [
      {
        "Title": "sample string 1",
        "Count": 2
      },
      {
        "Title": "sample string 1",
        "Count": 2
      }
    ],
    "WVLB": [
      {
        "Title": "sample string 1",
        "Count": 2
      },
      {
        "Title": "sample string 1",
        "Count": 2
      }
    ],
    "WinRate": 7.1
  }
]