Download OpenAPI specification: [Performance_Stats_API.yaml]
This document describes Autochartist's Performance Statistics
Our APIs require the following url parameters on every call:
brokerid – your customer ID on our systems (provided to you)
user – a unique ID of the end-user consuming the information. For server-2-Server integrations this would typically be your company name
accounttype – 0 = LIVE, 1 = DEMO
expiry – Unix timestamp of when this token will expire________token – a token generated by MD5(user|[accounttype]|[expiry][secretkey])
in which secretkey is the secret key provided to you, not to be shared with the end-user
Note the ‘|’ (Pipe) character before and after the AccountType parameter
$expiryDate = time() + (3 * 24 * 60 * 60);
$userid = “myuserid”;
$accountType = “0”;
$secretKey = “secretkey”;
$token = md5(“${userid}|${accountType}|${expiryDate}${secretKey }”);
echo $token;
?>
import hashlib
import time
expiry_date = int(time.time()) + (3 * 24 * 60 * 60)
userid = "myuserid"
account_type = "0"
secret_key = "secretkey"
token = hashlib.md5(f"{userid}|{account_type}|{expiry_date}{secret_key}".encode("utf-8")).hexdigest()
print(token)
Returns Autochartist performance stats for all the instruments defined for the specified broker_id.
Status 200 - application/json - latest pattern results.
The JSON object includes the following keys:
group - the asset class / grouping, along with a breakdown for either "brekout" or "emerging" patterns.
Each of the "nodes" of the stats comprises of the following fields:
value - the value of the quality indicator
total - the quantity of results identified
correct - the quantity of results that hit the specified target
percentage - correct/total * 100
from - the start of the period analyzed
to - the end of the period analyzed
A valid request with an authorized MD5 token will be accepted
| broker_id | string Example: broker_id={{broker_id}} |
| token | string Example: token={{token}} |
| user | string Example: user={{user}} |
| expire | string Example: expire={{expire}} |
| account_type | string Example: account_type={{account_type}} |
{- "brokerId": 859,
- "from": "2023-08-31 06:06:46.514000+02:00",
- "to": "2024-08-31 06:08:48.617000+02:00",
- "group": [
- {
- "name": "Commodities",
- "breakout": {
- "category": [
- {
- "name": "significant",
- "data": [
- {
- "value": "3.0",
- "total": 1498,
- "correct": 1165,
- "percentage": "77.77036048064086",
- "from": "2023-08-31 07:45:00",
- "to": "2024-08-28 09:00:00"
}, - {
- "value": "4.0",
- "total": 1052,
- "correct": 800,
- "percentage": "76.04562737642586",
- "from": "2023-08-31 07:45:00",
- "to": "2024-08-29 16:00:00"
}, - {
- "value": "5.0",
- "total": 649,
- "correct": 478,
- "percentage": "73.6517719568567",
- "from": "2023-08-31 07:45:00",
- "to": "2024-08-28 08:00:00"
}, - {
- "value": "6.0",
- "total": 275,
- "correct": 199,
- "percentage": "72.36363636363636",
- "from": "2023-09-04 13:30:00",
- "to": "2024-08-28 14:45:00"
}, - {
- "value": "7.0",
- "total": 95,
- "correct": 73,
- "percentage": "76.84210526315789",
- "from": "2023-08-31 12:00:00",
- "to": "2024-08-22 13:00:00"
}, - {
- "value": "8.0",
- "total": 19,
- "correct": 15,
- "percentage": "78.94736842105263",
- "from": "2023-11-02 12:00:00",
- "to": "2024-07-31 18:00:00"
}, - {
- "value": "9.0",
- "total": 5,
- "correct": 4,
- "percentage": "80.0",
- "from": "2023-09-14 10:00:00",
- "to": "2024-08-30 05:45:00"
}
]
}, - {
- "name": "direction",
- "data": [
- {
- "value": "1",
- "total": 5668,
- "correct": 4083,
- "percentage": "72.03599153140438",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 05:45:00"
}, - {
- "value": "-1",
- "total": 5240,
- "correct": 3681,
- "percentage": "70.24809160305342",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 04:30:00"
}
]
}, - {
- "name": "symmetry",
- "data": [
- {
- "value": "0.0",
- "total": 117,
- "correct": 75,
- "percentage": "64.1025641025641",
- "from": "2023-09-04 05:00:00",
- "to": "2024-08-30 01:15:00"
}, - {
- "value": "0.1",
- "total": 245,
- "correct": 191,
- "percentage": "77.9591836734694",
- "from": "2023-09-04 01:00:00",
- "to": "2024-08-28 14:45:00"
}, - {
- "value": "0.2",
- "total": 383,
- "correct": 262,
- "percentage": "68.40731070496084",
- "from": "2023-09-07 13:30:00",
- "to": "2024-08-30 00:00:00"
}, - {
- "value": "0.3",
- "total": 686,
- "correct": 519,
- "percentage": "75.65597667638484",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-29 12:30:00"
}, - {
- "value": "0.4",
- "total": 925,
- "correct": 659,
- "percentage": "71.24324324324324",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 01:15:00"
}, - {
- "value": "0.5",
- "total": 1084,
- "correct": 783,
- "percentage": "72.23247232472325",
- "from": "2023-08-31 07:30:00",
- "to": "2024-08-30 04:30:00"
}, - {
- "value": "0.6",
- "total": 1130,
- "correct": 770,
- "percentage": "68.14159292035397",
- "from": "2023-08-31 11:45:00",
- "to": "2024-08-30 00:15:00"
}, - {
- "value": "0.7",
- "total": 1116,
- "correct": 742,
- "percentage": "66.48745519713262",
- "from": "2023-08-31 07:30:00",
- "to": "2024-08-30 05:30:00"
}, - {
- "value": "0.8",
- "total": 939,
- "correct": 591,
- "percentage": "62.939297124600635",
- "from": "2023-08-31 11:45:00",
- "to": "2024-08-28 23:30:00"
}, - {
- "value": "0.9",
- "total": 534,
- "correct": 344,
- "percentage": "64.41947565543072",
- "from": "2023-09-04 01:45:00",
- "to": "2024-08-27 11:00:00"
}, - {
- "value": "1.0",
- "total": 156,
- "correct": 94,
- "percentage": "60.256410256410255",
- "from": "2023-09-04 10:00:00",
- "to": "2024-08-28 14:45:00"
}
]
}, - {
- "name": "breakout",
- "data": [
- {
- "value": "0.0",
- "total": 331,
- "correct": 242,
- "percentage": "73.1117824773414",
- "from": "2023-09-04 01:30:00",
- "to": "2024-08-29 07:30:00"
}, - {
- "value": "0.1",
- "total": 651,
- "correct": 471,
- "percentage": "72.35023041474655",
- "from": "2023-08-31 11:30:00",
- "to": "2024-08-29 22:15:00"
}, - {
- "value": "0.2",
- "total": 643,
- "correct": 457,
- "percentage": "71.07309486780716",
- "from": "2023-08-31 07:30:00",
- "to": "2024-08-28 23:30:00"
}, - {
- "value": "0.3",
- "total": 592,
- "correct": 421,
- "percentage": "71.11486486486487",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 00:15:00"
}, - {
- "value": "0.4",
- "total": 533,
- "correct": 360,
- "percentage": "67.54221388367729",
- "from": "2023-08-31 11:45:00",
- "to": "2024-08-29 10:30:00"
}, - {
- "value": "0.5",
- "total": 459,
- "correct": 311,
- "percentage": "67.75599128540306",
- "from": "2023-08-31 11:45:00",
- "to": "2024-08-30 05:30:00"
}, - {
- "value": "0.6",
- "total": 429,
- "correct": 280,
- "percentage": "65.26806526806527",
- "from": "2023-09-01 09:45:00",
- "to": "2024-08-29 10:00:00"
}, - {
- "value": "0.7",
- "total": 368,
- "correct": 257,
- "percentage": "69.83695652173914",
- "from": "2023-09-01 00:00:00",
- "to": "2024-08-30 01:15:00"
}, - {
- "value": "0.8",
- "total": 356,
- "correct": 219,
- "percentage": "61.51685393258427",
- "from": "2023-08-31 07:30:00",
- "to": "2024-08-29 10:45:00"
}, - {
- "value": "0.9",
- "total": 299,
- "correct": 200,
- "percentage": "66.88963210702342",
- "from": "2023-09-01 07:15:00",
- "to": "2024-08-29 00:00:00"
}, - {
- "value": "1.0",
- "total": 2654,
- "correct": 1812,
- "percentage": "68.27430293896006",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 04:30:00"
}
]
}, - {
- "name": "symbol",
- "data": [
- {
- "value": "Brent Crude",
- "total": 2140,
- "correct": 1545,
- "percentage": "72.19626168224299",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 01:15:00"
}, - {
- "value": "Gold Spot",
- "total": 2263,
- "correct": 1597,
- "percentage": "70.57003977021652",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-29 12:30:00"
}, - {
- "value": "Natural Gas",
- "total": 2046,
- "correct": 1469,
- "percentage": "71.79863147605083",
- "from": "2023-08-31 10:15:00",
- "to": "2024-08-30 05:45:00"
}, - {
- "value": "Silver Spot",
- "total": 2274,
- "correct": 1578,
- "percentage": "69.39313984168865",
- "from": "2023-08-31 11:00:00",
- "to": "2024-08-30 05:30:00"
}, - {
- "value": "US Crude Oil",
- "total": 2185,
- "correct": 1575,
- "percentage": "72.08237986270024",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 00:15:00"
}
]
}, - {
- "name": "clarity",
- "data": [
- {
- "value": "0.0",
- "total": 703,
- "correct": 536,
- "percentage": "76.24466571834992",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 00:00:00"
}, - {
- "value": "0.1",
- "total": 191,
- "correct": 141,
- "percentage": "73.82198952879581",
- "from": "2023-08-31 07:30:00",
- "to": "2024-08-29 08:00:00"
}, - {
- "value": "0.2",
- "total": 252,
- "correct": 188,
- "percentage": "74.60317460317461",
- "from": "2023-09-01 14:00:00",
- "to": "2024-08-29 02:15:00"
}, - {
- "value": "0.3",
- "total": 335,
- "correct": 245,
- "percentage": "73.13432835820896",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-29 20:00:00"
}, - {
- "value": "0.4",
- "total": 450,
- "correct": 331,
- "percentage": "73.55555555555556",
- "from": "2023-09-01 07:00:00",
- "to": "2024-08-30 05:30:00"
}, - {
- "value": "0.5",
- "total": 574,
- "correct": 404,
- "percentage": "70.38327526132404",
- "from": "2023-08-31 11:45:00",
- "to": "2024-08-30 04:30:00"
}, - {
- "value": "0.6",
- "total": 748,
- "correct": 530,
- "percentage": "70.85561497326202",
- "from": "2023-09-01 00:00:00",
- "to": "2024-08-30 01:15:00"
}, - {
- "value": "0.7",
- "total": 976,
- "correct": 659,
- "percentage": "67.52049180327869",
- "from": "2023-08-31 11:45:00",
- "to": "2024-08-30 00:15:00"
}, - {
- "value": "0.8",
- "total": 1165,
- "correct": 783,
- "percentage": "67.21030042918454",
- "from": "2023-08-31 11:30:00",
- "to": "2024-08-29 10:45:00"
}, - {
- "value": "0.9",
- "total": 1338,
- "correct": 850,
- "percentage": "63.52765321375187",
- "from": "2023-08-31 07:30:00",
- "to": "2024-08-30 00:15:00"
}, - {
- "value": "1.0",
- "total": 583,
- "correct": 363,
- "percentage": "62.264150943396224",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-29 22:15:00"
}
]
}, - {
- "name": "interval",
- "data": [
- {
- "value": "15",
- "total": 6409,
- "correct": 4543,
- "percentage": "70.88469339990638",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 05:45:00",
- "description": "15min"
}, - {
- "value": "30",
- "total": 2825,
- "correct": 2014,
- "percentage": "71.2920353982301",
- "from": "2023-08-31 07:30:00",
- "to": "2024-08-29 12:30:00",
- "description": "30min"
}, - {
- "value": "60",
- "total": 1331,
- "correct": 958,
- "percentage": "71.97595792637115",
- "from": "2023-08-31 12:00:00",
- "to": "2024-08-29 10:00:00",
- "description": "Hourly"
}, - {
- "value": "240",
- "total": 297,
- "correct": 215,
- "percentage": "72.39057239057239",
- "from": "2023-09-03 20:00:00",
- "to": "2024-08-16 12:00:00",
- "description": "4 Hourly"
}, - {
- "value": "1440",
- "total": 46,
- "correct": 34,
- "percentage": "73.91304347826086",
- "from": "2023-09-01 00:00:00",
- "to": "2024-06-20 00:00:00",
- "description": "Daily"
}
]
}, - {
- "name": "quality",
- "data": [
- {
- "value": "0.1",
- "total": 21,
- "correct": 19,
- "percentage": "90.47619047619048",
- "from": "2023-11-06 15:30:00",
- "to": "2024-08-26 07:00:00"
}, - {
- "value": "0.2",
- "total": 154,
- "correct": 130,
- "percentage": "84.4155844155844",
- "from": "2023-09-07 03:00:00",
- "to": "2024-08-28 11:15:00"
}, - {
- "value": "0.3",
- "total": 486,
- "correct": 363,
- "percentage": "74.69135802469135",
- "from": "2023-08-31 07:30:00",
- "to": "2024-08-30 00:15:00"
}, - {
- "value": "0.4",
- "total": 1110,
- "correct": 824,
- "percentage": "74.23423423423424",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 01:15:00"
}, - {
- "value": "0.5",
- "total": 1547,
- "correct": 1112,
- "percentage": "71.88106011635423",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 01:15:00"
}, - {
- "value": "0.6",
- "total": 1712,
- "correct": 1135,
- "percentage": "66.29672897196261",
- "from": "2023-08-31 07:30:00",
- "to": "2024-08-30 04:30:00"
}, - {
- "value": "0.7",
- "total": 1421,
- "correct": 895,
- "percentage": "62.983814215341305",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 05:30:00"
}, - {
- "value": "0.8",
- "total": 648,
- "correct": 413,
- "percentage": "63.73456790123457",
- "from": "2023-08-31 11:45:00",
- "to": "2024-08-30 00:15:00"
}, - {
- "value": "0.9",
- "total": 207,
- "correct": 135,
- "percentage": "65.21739130434783",
- "from": "2023-09-04 01:45:00",
- "to": "2024-08-28 13:00:00"
}, - {
- "value": "1.0",
- "total": 9,
- "correct": 4,
- "percentage": "44.44444444444444",
- "from": "2023-10-09 13:00:00",
- "to": "2024-08-19 12:30:00"
}
]
}, - {
- "name": "overall",
- "data": [
- {
- "value": "overall",
- "total": 10908,
- "correct": 7764,
- "percentage": "71.17711771177117",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 05:45:00"
}
]
}, - {
- "name": "pattern",
- "data": [
- {
- "value": "Ascending Triangle",
- "total": 325,
- "correct": 246,
- "percentage": "75.6923076923077",
- "from": "2023-09-01 00:00:00",
- "to": "2024-08-29 22:15:00"
}, - {
- "value": "Channel Down",
- "total": 549,
- "correct": 427,
- "percentage": "77.77777777777779",
- "from": "2023-09-01 01:00:00",
- "to": "2024-08-30 05:30:00"
}, - {
- "value": "Channel Up",
- "total": 554,
- "correct": 387,
- "percentage": "69.85559566787003",
- "from": "2023-09-01 14:00:00",
- "to": "2024-08-29 12:30:00"
}, - {
- "value": "Descending Triangle",
- "total": 219,
- "correct": 176,
- "percentage": "80.36529680365297",
- "from": "2023-09-05 08:00:00",
- "to": "2024-08-28 07:30:00"
}, - {
- "value": "Double Bottom",
- "total": 17,
- "correct": 14,
- "percentage": "82.35294117647058",
- "from": "2023-09-29 02:15:00",
- "to": "2024-08-14 13:45:00"
}, - {
- "value": "Double Top",
- "total": 12,
- "correct": 10,
- "percentage": "83.33333333333334",
- "from": "2023-09-13 17:00:00",
- "to": "2024-08-07 17:30:00"
}, - {
- "value": "Falling Wedge",
- "total": 695,
- "correct": 491,
- "percentage": "70.64748201438849",
- "from": "2023-09-01 01:00:00",
- "to": "2024-08-30 00:15:00"
}, - {
- "value": "Flag",
- "total": 238,
- "correct": 172,
- "percentage": "72.26890756302521",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-29 10:00:00"
}, - {
- "value": "Head and Shoulders",
- "total": 35,
- "correct": 32,
- "percentage": "91.42857142857143",
- "from": "2023-09-21 01:00:00",
- "to": "2024-08-06 12:00:00"
}, - {
- "value": "Inverse Head and Shoulders",
- "total": 32,
- "correct": 29,
- "percentage": "90.625",
- "from": "2023-09-08 14:45:00",
- "to": "2024-08-20 07:30:00"
}, - {
- "value": "Pennant",
- "total": 402,
- "correct": 228,
- "percentage": "56.71641791044776",
- "from": "2023-08-31 07:30:00",
- "to": "2024-08-29 08:00:00"
}, - {
- "value": "Rectangle",
- "total": 26,
- "correct": 22,
- "percentage": "84.61538461538461",
- "from": "2023-09-01 00:00:00",
- "to": "2024-07-29 14:30:00"
}, - {
- "value": "Resistance",
- "total": 1894,
- "correct": 1436,
- "percentage": "75.81837381203802",
- "from": "2023-08-31 07:45:00",
- "to": "2024-08-30 05:45:00"
}, - {
- "value": "Rising Wedge",
- "total": 726,
- "correct": 492,
- "percentage": "67.76859504132231",
- "from": "2023-08-31 11:30:00",
- "to": "2024-08-29 02:15:00"
}, - {
- "value": "Support",
- "total": 1699,
- "correct": 1298,
- "percentage": "76.39788110653325",
- "from": "2023-08-31 12:00:00",
- "to": "2024-08-29 12:30:00"
}, - {
- "value": "Triangle",
- "total": 3485,
- "correct": 2304,
- "percentage": "66.1119081779053",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 04:30:00"
}
]
}, - {
- "name": "initialtrend",
- "data": [
- {
- "value": "0.0",
- "total": 113,
- "correct": 96,
- "percentage": "84.95575221238938",
- "from": "2023-09-12 20:30:00",
- "to": "2024-08-28 13:00:00"
}, - {
- "value": "0.1",
- "total": 712,
- "correct": 485,
- "percentage": "68.1179775280899",
- "from": "2023-08-31 12:00:00",
- "to": "2024-08-30 00:15:00"
}, - {
- "value": "0.2",
- "total": 1107,
- "correct": 780,
- "percentage": "70.46070460704607",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 01:15:00"
}, - {
- "value": "0.3",
- "total": 1137,
- "correct": 839,
- "percentage": "73.79067722075638",
- "from": "2023-08-31 07:30:00",
- "to": "2024-08-29 07:45:00"
}, - {
- "value": "0.4",
- "total": 974,
- "correct": 626,
- "percentage": "64.27104722792608",
- "from": "2023-08-31 11:45:00",
- "to": "2024-08-30 04:30:00"
}, - {
- "value": "0.5",
- "total": 813,
- "correct": 551,
- "percentage": "67.77367773677737",
- "from": "2023-08-31 11:45:00",
- "to": "2024-08-30 00:15:00"
}, - {
- "value": "0.6",
- "total": 584,
- "correct": 410,
- "percentage": "70.2054794520548",
- "from": "2023-08-31 11:45:00",
- "to": "2024-08-30 01:15:00"
}, - {
- "value": "0.7",
- "total": 437,
- "correct": 272,
- "percentage": "62.24256292906178",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-29 10:45:00"
}, - {
- "value": "0.8",
- "total": 332,
- "correct": 220,
- "percentage": "66.26506024096386",
- "from": "2023-08-31 07:30:00",
- "to": "2024-08-29 22:15:00"
}, - {
- "value": "0.9",
- "total": 222,
- "correct": 158,
- "percentage": "71.17117117117117",
- "from": "2023-09-04 09:00:00",
- "to": "2024-08-29 08:00:00"
}, - {
- "value": "1.0",
- "total": 884,
- "correct": 593,
- "percentage": "67.0814479638009",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 05:30:00"
}
]
}, - {
- "name": "hourofday",
- "data": [
- {
- "value": "0",
- "total": 440,
- "correct": 278,
- "percentage": "63.18181818181819",
- "from": "2023-09-01 00:00:00",
- "to": "2024-08-30 00:15:00"
}, - {
- "value": "1",
- "total": 653,
- "correct": 433,
- "percentage": "66.3093415007657",
- "from": "2023-09-01 01:00:00",
- "to": "2024-08-30 01:15:00"
}, - {
- "value": "10",
- "total": 513,
- "correct": 405,
- "percentage": "78.94736842105263",
- "from": "2023-08-31 10:15:00",
- "to": "2024-08-29 10:45:00"
}, - {
- "value": "11",
- "total": 529,
- "correct": 413,
- "percentage": "78.0718336483932",
- "from": "2023-08-31 11:00:00",
- "to": "2024-08-28 11:15:00"
}, - {
- "value": "12",
- "total": 862,
- "correct": 631,
- "percentage": "73.20185614849188",
- "from": "2023-08-31 12:00:00",
- "to": "2024-08-29 12:30:00"
}, - {
- "value": "13",
- "total": 812,
- "correct": 624,
- "percentage": "76.84729064039408",
- "from": "2023-09-01 13:00:00",
- "to": "2024-08-28 13:00:00"
}, - {
- "value": "14",
- "total": 655,
- "correct": 494,
- "percentage": "75.41984732824427",
- "from": "2023-09-01 14:00:00",
- "to": "2024-08-28 14:45:00"
}, - {
- "value": "15",
- "total": 483,
- "correct": 335,
- "percentage": "69.35817805383023",
- "from": "2023-08-31 15:00:00",
- "to": "2024-08-23 15:15:00"
}, - {
- "value": "16",
- "total": 414,
- "correct": 271,
- "percentage": "65.45893719806763",
- "from": "2023-09-05 16:30:00",
- "to": "2024-08-29 16:00:00"
}, - {
- "value": "17",
- "total": 328,
- "correct": 197,
- "percentage": "60.0609756097561",
- "from": "2023-09-07 17:00:00",
- "to": "2024-08-27 17:30:00"
}, - {
- "value": "18",
- "total": 295,
- "correct": 166,
- "percentage": "56.271186440677965",
- "from": "2023-09-07 18:15:00",
- "to": "2024-08-28 18:30:00"
}, - {
- "value": "19",
- "total": 270,
- "correct": 134,
- "percentage": "49.629629629629626",
- "from": "2023-09-05 19:45:00",
- "to": "2024-08-28 19:00:00"
}, - {
- "value": "2",
- "total": 386,
- "correct": 278,
- "percentage": "72.02072538860104",
- "from": "2023-09-05 02:00:00",
- "to": "2024-08-29 02:15:00"
}, - {
- "value": "20",
- "total": 233,
- "correct": 113,
- "percentage": "48.497854077253216",
- "from": "2023-09-03 20:00:00",
- "to": "2024-08-29 20:00:00"
}, - {
- "value": "21",
- "total": 76,
- "correct": 42,
- "percentage": "55.26315789473685",
- "from": "2023-09-07 21:00:00",
- "to": "2024-08-06 21:00:00"
}, - {
- "value": "22",
- "total": 118,
- "correct": 60,
- "percentage": "50.847457627118644",
- "from": "2023-09-03 22:00:00",
- "to": "2024-08-29 22:15:00"
}, - {
- "value": "23",
- "total": 220,
- "correct": 126,
- "percentage": "57.27272727272727",
- "from": "2023-08-31 23:45:00",
- "to": "2024-08-28 23:30:00"
}, - {
- "value": "3",
- "total": 254,
- "correct": 171,
- "percentage": "67.32283464566929",
- "from": "2023-09-07 03:00:00",
- "to": "2024-08-23 03:15:00"
}, - {
- "value": "4",
- "total": 351,
- "correct": 261,
- "percentage": "74.35897435897436",
- "from": "2023-09-05 04:15:00",
- "to": "2024-08-30 04:30:00"
}, - {
- "value": "5",
- "total": 467,
- "correct": 363,
- "percentage": "77.73019271948608",
- "from": "2023-09-04 05:00:00",
- "to": "2024-08-30 05:45:00"
}, - {
- "value": "6",
- "total": 643,
- "correct": 515,
- "percentage": "80.09331259720062",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-27 06:00:00"
}, - {
- "value": "7",
- "total": 697,
- "correct": 540,
- "percentage": "77.47489239598279",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-29 07:45:00"
}, - {
- "value": "8",
- "total": 686,
- "correct": 488,
- "percentage": "71.13702623906705",
- "from": "2023-09-04 08:15:00",
- "to": "2024-08-29 08:00:00"
}, - {
- "value": "9",
- "total": 523,
- "correct": 426,
- "percentage": "81.45315487571702",
- "from": "2023-09-01 09:00:00",
- "to": "2024-08-28 09:00:00"
}
]
}
]
}, - "emerging": {
- "category": [
- {
- "name": "direction",
- "data": [
- {
- "value": "1",
- "total": 4320,
- "correct": 3639,
- "percentage": "84.23611111111111",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 04:00:00"
}, - {
- "value": "-1",
- "total": 3690,
- "correct": 2927,
- "percentage": "79.32249322493224",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-29 10:45:00"
}
]
}, - {
- "name": "hourofday",
- "data": [
- {
- "value": "0",
- "total": 235,
- "correct": 190,
- "percentage": "80.85106382978722",
- "from": "2023-09-04 00:30:00",
- "to": "2024-08-27 00:30:00"
}, - {
- "value": "1",
- "total": 345,
- "correct": 295,
- "percentage": "85.5072463768116",
- "from": "2023-09-01 01:00:00",
- "to": "2024-08-28 01:45:00"
}, - {
- "value": "10",
- "total": 408,
- "correct": 341,
- "percentage": "83.57843137254902",
- "from": "2023-09-01 10:30:00",
- "to": "2024-08-29 10:45:00"
}, - {
- "value": "11",
- "total": 441,
- "correct": 372,
- "percentage": "84.35374149659864",
- "from": "2023-08-31 11:45:00",
- "to": "2024-08-28 11:00:00"
}, - {
- "value": "12",
- "total": 517,
- "correct": 434,
- "percentage": "83.9458413926499",
- "from": "2023-08-31 12:00:00",
- "to": "2024-08-28 12:45:00"
}, - {
- "value": "13",
- "total": 644,
- "correct": 517,
- "percentage": "80.27950310559007",
- "from": "2023-09-01 13:30:00",
- "to": "2024-08-27 13:45:00"
}, - {
- "value": "14",
- "total": 534,
- "correct": 423,
- "percentage": "79.21348314606742",
- "from": "2023-09-06 14:45:00",
- "to": "2024-08-28 14:45:00"
}, - {
- "value": "15",
- "total": 449,
- "correct": 344,
- "percentage": "76.61469933184856",
- "from": "2023-08-31 15:30:00",
- "to": "2024-08-27 15:30:00"
}, - {
- "value": "16",
- "total": 427,
- "correct": 322,
- "percentage": "75.40983606557377",
- "from": "2023-08-31 16:15:00",
- "to": "2024-08-27 16:30:00"
}, - {
- "value": "17",
- "total": 344,
- "correct": 248,
- "percentage": "72.09302325581395",
- "from": "2023-09-01 17:00:00",
- "to": "2024-08-27 17:30:00"
}, - {
- "value": "18",
- "total": 272,
- "correct": 191,
- "percentage": "70.22058823529412",
- "from": "2023-08-31 18:00:00",
- "to": "2024-08-27 18:15:00"
}, - {
- "value": "19",
- "total": 257,
- "correct": 192,
- "percentage": "74.70817120622569",
- "from": "2023-09-07 19:45:00",
- "to": "2024-08-28 19:30:00"
}, - {
- "value": "2",
- "total": 255,
- "correct": 218,
- "percentage": "85.49019607843137",
- "from": "2023-09-01 02:00:00",
- "to": "2024-08-28 02:15:00"
}, - {
- "value": "20",
- "total": 183,
- "correct": 149,
- "percentage": "81.4207650273224",
- "from": "2023-09-03 20:00:00",
- "to": "2024-08-21 20:00:00"
}, - {
- "value": "21",
- "total": 30,
- "correct": 23,
- "percentage": "76.66666666666667",
- "from": "2023-11-27 21:00:00",
- "to": "2024-03-08 21:30:00"
}, - {
- "value": "22",
- "total": 66,
- "correct": 56,
- "percentage": "84.84848484848484",
- "from": "2023-09-07 22:00:00",
- "to": "2024-08-20 22:30:00"
}, - {
- "value": "23",
- "total": 151,
- "correct": 126,
- "percentage": "83.44370860927152",
- "from": "2023-09-03 23:30:00",
- "to": "2024-08-26 23:45:00"
}, - {
- "value": "3",
- "total": 242,
- "correct": 214,
- "percentage": "88.42975206611571",
- "from": "2023-09-05 03:00:00",
- "to": "2024-08-28 03:30:00"
}, - {
- "value": "4",
- "total": 228,
- "correct": 206,
- "percentage": "90.35087719298247",
- "from": "2023-09-05 04:00:00",
- "to": "2024-08-30 04:00:00"
}, - {
- "value": "5",
- "total": 277,
- "correct": 252,
- "percentage": "90.97472924187726",
- "from": "2023-09-05 05:00:00",
- "to": "2024-08-23 05:00:00"
}, - {
- "value": "6",
- "total": 355,
- "correct": 313,
- "percentage": "88.16901408450704",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-28 06:15:00"
}, - {
- "value": "7",
- "total": 466,
- "correct": 404,
- "percentage": "86.69527896995707",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-28 07:30:00"
}, - {
- "value": "8",
- "total": 483,
- "correct": 390,
- "percentage": "80.74534161490683",
- "from": "2023-09-01 08:00:00",
- "to": "2024-08-26 08:45:00"
}, - {
- "value": "9",
- "total": 401,
- "correct": 346,
- "percentage": "86.28428927680798",
- "from": "2023-08-31 09:00:00",
- "to": "2024-08-27 09:00:00"
}
]
}, - {
- "name": "interval",
- "data": [
- {
- "value": "15",
- "total": 4801,
- "correct": 3964,
- "percentage": "82.56613205582171",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 04:00:00",
- "description": "15min"
}, - {
- "value": "30",
- "total": 2072,
- "correct": 1672,
- "percentage": "80.6949806949807",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-28 07:30:00",
- "description": "30min"
}, - {
- "value": "60",
- "total": 895,
- "correct": 734,
- "percentage": "82.01117318435755",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-28 01:00:00",
- "description": "Hourly"
}, - {
- "value": "240",
- "total": 232,
- "correct": 189,
- "percentage": "81.46551724137932",
- "from": "2023-09-01 12:00:00",
- "to": "2024-07-24 20:00:00",
- "description": "4 Hourly"
}, - {
- "value": "1440",
- "total": 10,
- "correct": 7,
- "percentage": "70.0",
- "from": "2023-09-06 00:00:00",
- "to": "2024-04-24 00:00:00",
- "description": "Daily"
}
]
}, - {
- "name": "overall",
- "data": [
- {
- "value": "overall",
- "total": 8010,
- "correct": 6566,
- "percentage": "81.97253433208489",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 04:00:00"
}
]
}, - {
- "name": "pattern",
- "data": [
- {
- "value": "Resistance",
- "total": 4320,
- "correct": 3639,
- "percentage": "84.23611111111111",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 04:00:00"
}, - {
- "value": "Support",
- "total": 3690,
- "correct": 2927,
- "percentage": "79.32249322493224",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-29 10:45:00"
}
]
}, - {
- "name": "significant",
- "data": [
- {
- "value": "3.0",
- "total": 2971,
- "correct": 2428,
- "percentage": "81.72332547963649",
- "from": "2023-08-31 09:00:00",
- "to": "2024-08-28 14:45:00"
}, - {
- "value": "4.0",
- "total": 2405,
- "correct": 1938,
- "percentage": "80.58212058212058",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-29 10:45:00"
}, - {
- "value": "5.0",
- "total": 1590,
- "correct": 1347,
- "percentage": "84.71698113207547",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-28 02:15:00"
}, - {
- "value": "6.0",
- "total": 697,
- "correct": 561,
- "percentage": "80.48780487804879",
- "from": "2023-09-01 07:00:00",
- "to": "2024-08-28 14:30:00"
}, - {
- "value": "7.0",
- "total": 279,
- "correct": 233,
- "percentage": "83.51254480286738",
- "from": "2023-08-31 11:45:00",
- "to": "2024-08-23 03:30:00"
}, - {
- "value": "8.0",
- "total": 53,
- "correct": 49,
- "percentage": "92.45283018867924",
- "from": "2023-11-01 13:00:00",
- "to": "2024-08-30 04:00:00"
}, - {
- "value": "9.0",
- "total": 15,
- "correct": 10,
- "percentage": "66.66666666666666",
- "from": "2023-08-31 07:00:00",
- "to": "2024-02-14 16:15:00"
}
]
}, - {
- "name": "symbol",
- "data": [
- {
- "value": "Brent Crude",
- "total": 1632,
- "correct": 1331,
- "percentage": "81.55637254901961",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-28 02:00:00"
}, - {
- "value": "Gold Spot",
- "total": 1442,
- "correct": 1205,
- "percentage": "83.56449375866852",
- "from": "2023-08-31 09:00:00",
- "to": "2024-08-28 10:00:00"
}, - {
- "value": "Natural Gas",
- "total": 1579,
- "correct": 1240,
- "percentage": "78.53071564281191",
- "from": "2023-08-31 07:15:00",
- "to": "2024-08-30 04:00:00"
}, - {
- "value": "Silver Spot",
- "total": 1707,
- "correct": 1476,
- "percentage": "86.46748681898066",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-28 01:30:00"
}, - {
- "value": "US Crude Oil",
- "total": 1650,
- "correct": 1314,
- "percentage": "79.63636363636364",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-28 14:45:00"
}
]
}
]
}, - "statsid": 602086631711336100,
- "timezoneoffset": "",
- "timezoneoffsetcount": 0
}, - {
- "name": "Forex",
- "breakout": {
- "category": [
- {
- "name": "symbol",
- "data": [
- {
- "value": "AUDCAD",
- "total": 1308,
- "correct": 948,
- "percentage": "72.47706422018348",
- "from": "2023-08-31 08:00:00",
- "to": "2024-08-30 08:00:00"
}, - {
- "value": "AUDJPY",
- "total": 2083,
- "correct": 1476,
- "percentage": "70.85933749399904",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 06:00:00"
}, - {
- "value": "AUDNZD",
- "total": 1322,
- "correct": 938,
- "percentage": "70.95310136157337",
- "from": "2023-08-31 14:45:00",
- "to": "2024-08-27 05:00:00"
}, - {
- "value": "AUDUSD",
- "total": 1351,
- "correct": 995,
- "percentage": "73.64914877868246",
- "from": "2023-09-01 01:00:00",
- "to": "2024-08-30 02:45:00"
}, - {
- "value": "CHFJPY",
- "total": 2119,
- "correct": 1454,
- "percentage": "68.6172722982539",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 09:45:00"
}, - {
- "value": "EURAUD",
- "total": 1577,
- "correct": 1120,
- "percentage": "71.02092580849715",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 03:45:00"
}, - {
- "value": "EURCAD",
- "total": 1557,
- "correct": 1123,
- "percentage": "72.12588310854207",
- "from": "2023-08-31 08:00:00",
- "to": "2024-08-29 18:15:00"
}, - {
- "value": "EURCHF",
- "total": 1393,
- "correct": 991,
- "percentage": "71.14142139267767",
- "from": "2023-08-31 06:30:00",
- "to": "2024-08-30 01:00:00"
}, - {
- "value": "EURGBP",
- "total": 1231,
- "correct": 899,
- "percentage": "73.03005686433794",
- "from": "2023-09-01 00:00:00",
- "to": "2024-08-30 12:45:00"
}, - {
- "value": "EURJPY",
- "total": 2135,
- "correct": 1540,
- "percentage": "72.1311475409836",
- "from": "2023-08-31 06:30:00",
- "to": "2024-08-30 00:00:00"
}, - {
- "value": "EURUSD",
- "total": 1401,
- "correct": 1006,
- "percentage": "71.80585296216988",
- "from": "2023-08-31 15:00:00",
- "to": "2024-08-29 15:30:00"
}, - {
- "value": "GBPCHF",
- "total": 1448,
- "correct": 1036,
- "percentage": "71.54696132596685",
- "from": "2023-08-31 10:00:00",
- "to": "2024-08-29 18:30:00"
}, - {
- "value": "GBPJPY",
- "total": 2116,
- "correct": 1424,
- "percentage": "67.29678638941398",
- "from": "2023-08-31 16:00:00",
- "to": "2024-08-30 00:00:00"
}, - {
- "value": "GBPUSD",
- "total": 1541,
- "correct": 1117,
- "percentage": "72.48539909149902",
- "from": "2023-08-31 08:00:00",
- "to": "2024-08-30 04:00:00"
}, - {
- "value": "NZDUSD",
- "total": 1362,
- "correct": 985,
- "percentage": "72.32011747430249",
- "from": "2023-08-31 09:00:00",
- "to": "2024-08-30 10:45:00"
}, - {
- "value": "USDCAD",
- "total": 1535,
- "correct": 1070,
- "percentage": "69.70684039087948",
- "from": "2023-08-31 12:00:00",
- "to": "2024-08-30 04:00:00"
}, - {
- "value": "USDCHF",
- "total": 1450,
- "correct": 1010,
- "percentage": "69.6551724137931",
- "from": "2023-09-01 01:00:00",
- "to": "2024-08-29 03:45:00"
}, - {
- "value": "USDJPY",
- "total": 2197,
- "correct": 1558,
- "percentage": "70.9148839326354",
- "from": "2023-08-31 06:45:00",
- "to": "2024-08-30 08:45:00"
}
]
}, - {
- "name": "quality",
- "data": [
- {
- "value": "0.1",
- "total": 45,
- "correct": 42,
- "percentage": "93.33333333333333",
- "from": "2023-09-04 08:00:00",
- "to": "2024-08-27 10:00:00"
}, - {
- "value": "0.2",
- "total": 279,
- "correct": 232,
- "percentage": "83.15412186379928",
- "from": "2023-09-04 00:45:00",
- "to": "2024-08-27 10:15:00"
}, - {
- "value": "0.3",
- "total": 879,
- "correct": 648,
- "percentage": "73.72013651877133",
- "from": "2023-08-31 09:00:00",
- "to": "2024-08-30 04:00:00"
}, - {
- "value": "0.4",
- "total": 2081,
- "correct": 1475,
- "percentage": "70.87938491110043",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 12:45:00"
}, - {
- "value": "0.5",
- "total": 3525,
- "correct": 2438,
- "percentage": "69.16312056737588",
- "from": "2023-08-31 06:30:00",
- "to": "2024-08-30 08:45:00"
}, - {
- "value": "0.6",
- "total": 3900,
- "correct": 2583,
- "percentage": "66.23076923076923",
- "from": "2023-08-31 06:45:00",
- "to": "2024-08-30 04:00:00"
}, - {
- "value": "0.7",
- "total": 3282,
- "correct": 2072,
- "percentage": "63.13223644119439",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 04:00:00"
}, - {
- "value": "0.8",
- "total": 1626,
- "correct": 1024,
- "percentage": "62.97662976629766",
- "from": "2023-09-01 00:00:00",
- "to": "2024-08-30 09:45:00"
}, - {
- "value": "0.9",
- "total": 518,
- "correct": 292,
- "percentage": "56.37065637065637",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-29 12:30:00"
}, - {
- "value": "1.0",
- "total": 39,
- "correct": 20,
- "percentage": "51.28205128205128",
- "from": "2023-09-08 19:00:00",
- "to": "2024-08-27 12:00:00"
}
]
}, - {
- "name": "clarity",
- "data": [
- {
- "value": "0.0",
- "total": 1056,
- "correct": 754,
- "percentage": "71.40151515151516",
- "from": "2023-08-31 14:00:00",
- "to": "2024-08-30 02:45:00"
}, - {
- "value": "0.1",
- "total": 307,
- "correct": 232,
- "percentage": "75.57003257328991",
- "from": "2023-08-31 08:00:00",
- "to": "2024-08-30 04:00:00"
}, - {
- "value": "0.2",
- "total": 434,
- "correct": 306,
- "percentage": "70.50691244239631",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 00:00:00"
}, - {
- "value": "0.3",
- "total": 559,
- "correct": 387,
- "percentage": "69.23076923076923",
- "from": "2023-09-01 11:30:00",
- "to": "2024-08-30 02:45:00"
}, - {
- "value": "0.4",
- "total": 838,
- "correct": 596,
- "percentage": "71.1217183770883",
- "from": "2023-08-31 12:00:00",
- "to": "2024-08-30 02:30:00"
}, - {
- "value": "0.5",
- "total": 1168,
- "correct": 818,
- "percentage": "70.03424657534246",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-29 23:15:00"
}, - {
- "value": "0.6",
- "total": 1609,
- "correct": 1111,
- "percentage": "69.04909881914233",
- "from": "2023-09-01 06:15:00",
- "to": "2024-08-30 08:45:00"
}, - {
- "value": "0.7",
- "total": 2208,
- "correct": 1497,
- "percentage": "67.79891304347827",
- "from": "2023-08-31 08:00:00",
- "to": "2024-08-30 02:45:00"
}, - {
- "value": "0.8",
- "total": 2896,
- "correct": 1942,
- "percentage": "67.05801104972376",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 02:00:00"
}, - {
- "value": "0.9",
- "total": 3436,
- "correct": 2190,
- "percentage": "63.73690337601863",
- "from": "2023-08-31 06:30:00",
- "to": "2024-08-30 12:45:00"
}, - {
- "value": "1.0",
- "total": 1663,
- "correct": 993,
- "percentage": "59.71136500300661",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 09:45:00"
}
]
}, - {
- "name": "breakout",
- "data": [
- {
- "value": "0.0",
- "total": 858,
- "correct": 623,
- "percentage": "72.6107226107226",
- "from": "2023-08-31 14:45:00",
- "to": "2024-08-29 22:30:00"
}, - {
- "value": "0.1",
- "total": 1680,
- "correct": 1184,
- "percentage": "70.47619047619048",
- "from": "2023-08-31 08:00:00",
- "to": "2024-08-30 04:00:00"
}, - {
- "value": "0.2",
- "total": 1454,
- "correct": 986,
- "percentage": "67.81292984869326",
- "from": "2023-08-31 06:30:00",
- "to": "2024-08-30 12:45:00"
}, - {
- "value": "0.3",
- "total": 1335,
- "correct": 914,
- "percentage": "68.46441947565543",
- "from": "2023-08-31 08:00:00",
- "to": "2024-08-30 00:00:00"
}, - {
- "value": "0.4",
- "total": 1168,
- "correct": 791,
- "percentage": "67.72260273972603",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 08:45:00"
}, - {
- "value": "0.5",
- "total": 1041,
- "correct": 682,
- "percentage": "65.51392891450529",
- "from": "2023-08-31 07:15:00",
- "to": "2024-08-30 04:00:00"
}, - {
- "value": "0.6",
- "total": 932,
- "correct": 619,
- "percentage": "66.41630901287554",
- "from": "2023-08-31 06:45:00",
- "to": "2024-08-29 23:00:00"
}, - {
- "value": "0.7",
- "total": 868,
- "correct": 555,
- "percentage": "63.94009216589862",
- "from": "2023-08-31 16:00:00",
- "to": "2024-08-30 02:45:00"
}, - {
- "value": "0.8",
- "total": 776,
- "correct": 499,
- "percentage": "64.30412371134021",
- "from": "2023-09-01 07:00:00",
- "to": "2024-08-30 03:00:00"
}, - {
- "value": "0.9",
- "total": 662,
- "correct": 395,
- "percentage": "59.66767371601208",
- "from": "2023-08-31 14:00:00",
- "to": "2024-08-29 23:15:00"
}, - {
- "value": "1.0",
- "total": 5400,
- "correct": 3578,
- "percentage": "66.25925925925927",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 09:45:00"
}
]
}, - {
- "name": "interval",
- "data": [
- {
- "value": "15",
- "total": 15952,
- "correct": 11330,
- "percentage": "71.02557673019058",
- "from": "2023-08-31 06:30:00",
- "to": "2024-08-30 12:45:00",
- "description": "15min"
}, - {
- "value": "30",
- "total": 8063,
- "correct": 5728,
- "percentage": "71.0405556244574",
- "from": "2023-08-31 08:00:00",
- "to": "2024-08-30 04:00:00",
- "description": "30min"
}, - {
- "value": "60",
- "total": 4041,
- "correct": 2880,
- "percentage": "71.26948775055679",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 04:00:00",
- "description": "Hourly"
}, - {
- "value": "240",
- "total": 906,
- "correct": 635,
- "percentage": "70.08830022075055",
- "from": "2023-08-31 16:00:00",
- "to": "2024-08-28 08:00:00",
- "description": "4 Hourly"
}, - {
- "value": "1440",
- "total": 164,
- "correct": 117,
- "percentage": "71.34146341463415",
- "from": "2023-09-05 00:00:00",
- "to": "2024-06-24 00:00:00",
- "description": "Daily"
}
]
}, - {
- "name": "significant",
- "data": [
- {
- "value": "10.0",
- "total": 3,
- "correct": 3,
- "percentage": "100.0",
- "from": "2023-12-22 07:00:00",
- "to": "2024-05-30 06:45:00"
}, - {
- "value": "3.0",
- "total": 5449,
- "correct": 4198,
- "percentage": "77.04165902000368",
- "from": "2023-08-31 06:30:00",
- "to": "2024-08-30 10:45:00"
}, - {
- "value": "4.0",
- "total": 3616,
- "correct": 2767,
- "percentage": "76.52101769911505",
- "from": "2023-08-31 08:00:00",
- "to": "2024-08-29 04:30:00"
}, - {
- "value": "5.0",
- "total": 2251,
- "correct": 1671,
- "percentage": "74.23367392270103",
- "from": "2023-08-31 06:30:00",
- "to": "2024-08-30 04:00:00"
}, - {
- "value": "6.0",
- "total": 1113,
- "correct": 841,
- "percentage": "75.56154537286612",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-28 13:00:00"
}, - {
- "value": "7.0",
- "total": 405,
- "correct": 294,
- "percentage": "72.5925925925926",
- "from": "2023-08-31 10:45:00",
- "to": "2024-08-28 01:30:00"
}, - {
- "value": "8.0",
- "total": 102,
- "correct": 80,
- "percentage": "78.43137254901961",
- "from": "2023-09-05 01:15:00",
- "to": "2024-08-16 10:30:00"
}, - {
- "value": "9.0",
- "total": 13,
- "correct": 10,
- "percentage": "76.92307692307693",
- "from": "2023-10-27 13:00:00",
- "to": "2024-08-07 04:00:00"
}
]
}, - {
- "name": "initialtrend",
- "data": [
- {
- "value": "0.0",
- "total": 232,
- "correct": 180,
- "percentage": "77.58620689655173",
- "from": "2023-08-31 08:00:00",
- "to": "2024-08-27 14:00:00"
}, - {
- "value": "0.1",
- "total": 1678,
- "correct": 1203,
- "percentage": "71.69249106078665",
- "from": "2023-08-31 09:00:00",
- "to": "2024-08-30 12:45:00"
}, - {
- "value": "0.2",
- "total": 2518,
- "correct": 1715,
- "percentage": "68.10961080222398",
- "from": "2023-08-31 06:30:00",
- "to": "2024-08-30 08:45:00"
}, - {
- "value": "0.3",
- "total": 2402,
- "correct": 1579,
- "percentage": "65.73688592839301",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 01:00:00"
}, - {
- "value": "0.4",
- "total": 2144,
- "correct": 1431,
- "percentage": "66.74440298507463",
- "from": "2023-08-31 07:15:00",
- "to": "2024-08-30 04:00:00"
}, - {
- "value": "0.5",
- "total": 1699,
- "correct": 1107,
- "percentage": "65.15597410241318",
- "from": "2023-08-31 08:00:00",
- "to": "2024-08-30 09:45:00"
}, - {
- "value": "0.6",
- "total": 1321,
- "correct": 860,
- "percentage": "65.10219530658591",
- "from": "2023-08-31 14:30:00",
- "to": "2024-08-30 02:45:00"
}, - {
- "value": "0.7",
- "total": 1014,
- "correct": 648,
- "percentage": "63.905325443786985",
- "from": "2023-08-31 15:00:00",
- "to": "2024-08-30 09:45:00"
}, - {
- "value": "0.8",
- "total": 701,
- "correct": 465,
- "percentage": "66.33380884450784",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-29 06:30:00"
}, - {
- "value": "0.9",
- "total": 541,
- "correct": 344,
- "percentage": "63.58595194085028",
- "from": "2023-09-04 23:00:00",
- "to": "2024-08-29 14:00:00"
}, - {
- "value": "1.0",
- "total": 1924,
- "correct": 1294,
- "percentage": "67.25571725571726",
- "from": "2023-08-31 08:00:00",
- "to": "2024-08-30 08:00:00"
}
]
}, - {
- "name": "overall",
- "data": [
- {
- "value": "overall",
- "total": 29126,
- "correct": 20690,
- "percentage": "71.03618759870905",
- "from": "2023-08-31 06:30:00",
- "to": "2024-08-30 12:45:00"
}
]
}, - {
- "name": "pattern",
- "data": [
- {
- "value": "Ascending Triangle",
- "total": 739,
- "correct": 519,
- "percentage": "70.23004059539919",
- "from": "2023-09-01 00:15:00",
- "to": "2024-08-30 12:45:00"
}, - {
- "value": "Channel Down",
- "total": 1305,
- "correct": 994,
- "percentage": "76.16858237547893",
- "from": "2023-08-31 17:30:00",
- "to": "2024-08-29 15:30:00"
}, - {
- "value": "Channel Up",
- "total": 1349,
- "correct": 956,
- "percentage": "70.86730911786509",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 02:45:00"
}, - {
- "value": "Descending Triangle",
- "total": 559,
- "correct": 430,
- "percentage": "76.92307692307693",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-29 03:15:00"
}, - {
- "value": "Double Bottom",
- "total": 44,
- "correct": 36,
- "percentage": "81.81818181818183",
- "from": "2023-09-15 06:30:00",
- "to": "2024-08-23 13:30:00"
}, - {
- "value": "Double Top",
- "total": 46,
- "correct": 41,
- "percentage": "89.13043478260869",
- "from": "2023-09-01 08:00:00",
- "to": "2024-08-23 14:00:00"
}, - {
- "value": "Falling Wedge",
- "total": 1372,
- "correct": 971,
- "percentage": "70.77259475218659",
- "from": "2023-08-31 11:30:00",
- "to": "2024-08-30 04:00:00"
}, - {
- "value": "Flag",
- "total": 544,
- "correct": 384,
- "percentage": "70.58823529411765",
- "from": "2023-08-31 14:45:00",
- "to": "2024-08-30 08:00:00"
}, - {
- "value": "Head and Shoulders",
- "total": 120,
- "correct": 95,
- "percentage": "79.16666666666666",
- "from": "2023-08-31 15:00:00",
- "to": "2024-08-29 10:30:00"
}, - {
- "value": "Inverse Head and Shoulders",
- "total": 142,
- "correct": 127,
- "percentage": "89.43661971830986",
- "from": "2023-09-14 00:00:00",
- "to": "2024-08-07 00:00:00"
}, - {
- "value": "Pennant",
- "total": 684,
- "correct": 393,
- "percentage": "57.45614035087719",
- "from": "2023-09-01 01:00:00",
- "to": "2024-08-30 04:00:00"
}, - {
- "value": "Rectangle",
- "total": 90,
- "correct": 72,
- "percentage": "80.0",
- "from": "2023-08-31 12:00:00",
- "to": "2024-08-29 08:00:00"
}, - {
- "value": "Resistance",
- "total": 6652,
- "correct": 5068,
- "percentage": "76.1876127480457",
- "from": "2023-08-31 06:30:00",
- "to": "2024-08-30 06:00:00"
}, - {
- "value": "Rising Wedge",
- "total": 1793,
- "correct": 1111,
- "percentage": "61.963190184049076",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-29 01:45:00"
}, - {
- "value": "Support",
- "total": 6300,
- "correct": 4796,
- "percentage": "76.12698412698413",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 10:45:00"
}, - {
- "value": "Triangle",
- "total": 7387,
- "correct": 4697,
- "percentage": "63.5846757817788",
- "from": "2023-08-31 06:30:00",
- "to": "2024-08-30 09:45:00"
}
]
}, - {
- "name": "direction",
- "data": [
- {
- "value": "1",
- "total": 14772,
- "correct": 10630,
- "percentage": "71.96046574600595",
- "from": "2023-08-31 06:30:00",
- "to": "2024-08-30 12:45:00"
}, - {
- "value": "-1",
- "total": 14354,
- "correct": 10060,
- "percentage": "70.08499372997073",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 10:45:00"
}
]
}, - {
- "name": "symmetry",
- "data": [
- {
- "value": "0.0",
- "total": 149,
- "correct": 110,
- "percentage": "73.8255033557047",
- "from": "2023-09-04 00:45:00",
- "to": "2024-08-23 14:00:00"
}, - {
- "value": "0.1",
- "total": 453,
- "correct": 322,
- "percentage": "71.08167770419426",
- "from": "2023-09-04 00:30:00",
- "to": "2024-08-26 06:15:00"
}, - {
- "value": "0.2",
- "total": 853,
- "correct": 627,
- "percentage": "73.5052754982415",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-27 10:15:00"
}, - {
- "value": "0.3",
- "total": 1160,
- "correct": 825,
- "percentage": "71.12068965517241",
- "from": "2023-08-31 08:00:00",
- "to": "2024-08-29 10:30:00"
}, - {
- "value": "0.4",
- "total": 1793,
- "correct": 1303,
- "percentage": "72.67150027886224",
- "from": "2023-08-31 10:30:00",
- "to": "2024-08-30 02:45:00"
}, - {
- "value": "0.5",
- "total": 2196,
- "correct": 1522,
- "percentage": "69.30783242258653",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 12:45:00"
}, - {
- "value": "0.6",
- "total": 2595,
- "correct": 1735,
- "percentage": "66.85934489402698",
- "from": "2023-08-31 06:30:00",
- "to": "2024-08-30 09:45:00"
}, - {
- "value": "0.7",
- "total": 2759,
- "correct": 1793,
- "percentage": "64.98731424429141",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 01:00:00"
}, - {
- "value": "0.8",
- "total": 2439,
- "correct": 1543,
- "percentage": "63.26363263632636",
- "from": "2023-08-31 06:45:00",
- "to": "2024-08-30 04:00:00"
}, - {
- "value": "0.9",
- "total": 1506,
- "correct": 875,
- "percentage": "58.10092961487384",
- "from": "2023-08-31 16:00:00",
- "to": "2024-08-30 08:00:00"
}, - {
- "value": "1.0",
- "total": 271,
- "correct": 171,
- "percentage": "63.09963099630996",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-29 18:30:00"
}
]
}, - {
- "name": "hourofday",
- "data": [
- {
- "value": "0",
- "total": 1881,
- "correct": 1386,
- "percentage": "73.68421052631578",
- "from": "2023-09-01 00:00:00",
- "to": "2024-08-30 00:00:00"
}, - {
- "value": "1",
- "total": 1444,
- "correct": 1085,
- "percentage": "75.13850415512465",
- "from": "2023-09-01 01:00:00",
- "to": "2024-08-30 01:00:00"
}, - {
- "value": "10",
- "total": 976,
- "correct": 708,
- "percentage": "72.54098360655738",
- "from": "2023-08-31 10:00:00",
- "to": "2024-08-30 10:45:00"
}, - {
- "value": "11",
- "total": 1070,
- "correct": 766,
- "percentage": "71.58878504672897",
- "from": "2023-08-31 11:30:00",
- "to": "2024-08-29 11:30:00"
}, - {
- "value": "12",
- "total": 2174,
- "correct": 1548,
- "percentage": "71.20515179392825",
- "from": "2023-08-31 12:00:00",
- "to": "2024-08-30 12:45:00"
}, - {
- "value": "13",
- "total": 1733,
- "correct": 1244,
- "percentage": "71.78303519907675",
- "from": "2023-09-01 13:00:00",
- "to": "2024-08-28 13:30:00"
}, - {
- "value": "14",
- "total": 1704,
- "correct": 1152,
- "percentage": "67.6056338028169",
- "from": "2023-08-31 14:00:00",
- "to": "2024-08-29 14:00:00"
}, - {
- "value": "15",
- "total": 1342,
- "correct": 942,
- "percentage": "70.19374068554396",
- "from": "2023-08-31 15:00:00",
- "to": "2024-08-29 15:45:00"
}, - {
- "value": "16",
- "total": 859,
- "correct": 584,
- "percentage": "67.98603026775321",
- "from": "2023-08-31 16:00:00",
- "to": "2024-08-28 16:00:00"
}, - {
- "value": "17",
- "total": 701,
- "correct": 454,
- "percentage": "64.76462196861627",
- "from": "2023-08-31 17:00:00",
- "to": "2024-08-28 17:45:00"
}, - {
- "value": "18",
- "total": 786,
- "correct": 480,
- "percentage": "61.06870229007634",
- "from": "2023-08-31 18:00:00",
- "to": "2024-08-29 18:30:00"
}, - {
- "value": "19",
- "total": 730,
- "correct": 471,
- "percentage": "64.52054794520548",
- "from": "2023-08-31 19:30:00",
- "to": "2024-08-28 19:00:00"
}, - {
- "value": "2",
- "total": 1188,
- "correct": 815,
- "percentage": "68.60269360269359",
- "from": "2023-09-01 02:00:00",
- "to": "2024-08-30 02:45:00"
}, - {
- "value": "20",
- "total": 707,
- "correct": 440,
- "percentage": "62.23479490806223",
- "from": "2023-08-31 20:00:00",
- "to": "2024-08-28 20:00:00"
}, - {
- "value": "21",
- "total": 464,
- "correct": 290,
- "percentage": "62.5",
- "from": "2023-08-31 21:15:00",
- "to": "2024-08-26 21:45:00"
}, - {
- "value": "22",
- "total": 476,
- "correct": 300,
- "percentage": "63.02521008403361",
- "from": "2023-09-04 22:00:00",
- "to": "2024-08-29 22:30:00"
}, - {
- "value": "23",
- "total": 865,
- "correct": 600,
- "percentage": "69.36416184971098",
- "from": "2023-08-31 23:00:00",
- "to": "2024-08-29 23:15:00"
}, - {
- "value": "3",
- "total": 761,
- "correct": 547,
- "percentage": "71.87910643889619",
- "from": "2023-09-05 03:30:00",
- "to": "2024-08-30 03:45:00"
}, - {
- "value": "4",
- "total": 976,
- "correct": 705,
- "percentage": "72.23360655737704",
- "from": "2023-09-01 04:00:00",
- "to": "2024-08-30 04:00:00"
}, - {
- "value": "5",
- "total": 1110,
- "correct": 859,
- "percentage": "77.38738738738739",
- "from": "2023-09-04 05:00:00",
- "to": "2024-08-29 05:30:00"
}, - {
- "value": "6",
- "total": 1705,
- "correct": 1225,
- "percentage": "71.8475073313783",
- "from": "2023-08-31 06:30:00",
- "to": "2024-08-30 06:00:00"
}, - {
- "value": "7",
- "total": 2186,
- "correct": 1684,
- "percentage": "77.03568161024702",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-29 07:00:00"
}, - {
- "value": "8",
- "total": 1949,
- "correct": 1427,
- "percentage": "73.21703437660338",
- "from": "2023-08-31 08:00:00",
- "to": "2024-08-30 08:45:00"
}, - {
- "value": "9",
- "total": 1339,
- "correct": 978,
- "percentage": "73.03958177744585",
- "from": "2023-08-31 09:00:00",
- "to": "2024-08-30 09:45:00"
}
]
}
]
}, - "emerging": {
- "category": [
- {
- "name": "direction",
- "data": [
- {
- "value": "1",
- "total": 16454,
- "correct": 13565,
- "percentage": "82.44195940196913",
- "from": "2023-08-31 09:30:00",
- "to": "2024-08-30 05:30:00"
}, - {
- "value": "-1",
- "total": 13891,
- "correct": 11084,
- "percentage": "79.79267151392988",
- "from": "2023-08-31 06:45:00",
- "to": "2024-08-30 10:00:00"
}
]
}, - {
- "name": "hourofday",
- "data": [
- {
- "value": "0",
- "total": 1463,
- "correct": 1222,
- "percentage": "83.52699931647301",
- "from": "2023-09-01 00:45:00",
- "to": "2024-08-29 00:30:00"
}, - {
- "value": "1",
- "total": 1305,
- "correct": 1095,
- "percentage": "83.9080459770115",
- "from": "2023-09-01 01:30:00",
- "to": "2024-08-30 01:15:00"
}, - {
- "value": "10",
- "total": 1263,
- "correct": 1044,
- "percentage": "82.6603325415677",
- "from": "2023-09-01 10:00:00",
- "to": "2024-08-30 10:00:00"
}, - {
- "value": "11",
- "total": 1339,
- "correct": 1062,
- "percentage": "79.31292008961913",
- "from": "2023-08-31 11:45:00",
- "to": "2024-08-29 11:30:00"
}, - {
- "value": "12",
- "total": 1823,
- "correct": 1448,
- "percentage": "79.42951179374657",
- "from": "2023-08-31 12:00:00",
- "to": "2024-08-29 12:30:00"
}, - {
- "value": "13",
- "total": 1895,
- "correct": 1482,
- "percentage": "78.20580474934037",
- "from": "2023-09-01 13:00:00",
- "to": "2024-08-28 13:00:00"
}, - {
- "value": "14",
- "total": 1669,
- "correct": 1272,
- "percentage": "76.2133013780707",
- "from": "2023-08-31 14:30:00",
- "to": "2024-08-28 14:30:00"
}, - {
- "value": "15",
- "total": 1455,
- "correct": 1136,
- "percentage": "78.07560137457045",
- "from": "2023-08-31 15:15:00",
- "to": "2024-08-28 15:30:00"
}, - {
- "value": "16",
- "total": 1099,
- "correct": 824,
- "percentage": "74.97725204731574",
- "from": "2023-08-31 16:15:00",
- "to": "2024-08-29 16:15:00"
}, - {
- "value": "17",
- "total": 980,
- "correct": 769,
- "percentage": "78.46938775510203",
- "from": "2023-08-31 17:15:00",
- "to": "2024-08-28 17:45:00"
}, - {
- "value": "18",
- "total": 952,
- "correct": 746,
- "percentage": "78.36134453781513",
- "from": "2023-08-31 18:00:00",
- "to": "2024-08-29 18:30:00"
}, - {
- "value": "19",
- "total": 857,
- "correct": 694,
- "percentage": "80.9801633605601",
- "from": "2023-08-31 19:30:00",
- "to": "2024-08-29 19:45:00"
}, - {
- "value": "2",
- "total": 1183,
- "correct": 997,
- "percentage": "84.27726120033813",
- "from": "2023-09-01 02:30:00",
- "to": "2024-08-30 02:00:00"
}, - {
- "value": "20",
- "total": 841,
- "correct": 694,
- "percentage": "82.52080856123662",
- "from": "2023-09-01 20:00:00",
- "to": "2024-08-28 20:15:00"
}, - {
- "value": "21",
- "total": 503,
- "correct": 391,
- "percentage": "77.73359840954275",
- "from": "2023-09-04 21:00:00",
- "to": "2024-08-28 21:45:00"
}, - {
- "value": "22",
- "total": 595,
- "correct": 504,
- "percentage": "84.70588235294117",
- "from": "2023-09-04 22:00:00",
- "to": "2024-08-28 22:30:00"
}, - {
- "value": "23",
- "total": 798,
- "correct": 680,
- "percentage": "85.21303258145363",
- "from": "2023-09-04 23:00:00",
- "to": "2024-08-28 23:45:00"
}, - {
- "value": "3",
- "total": 1066,
- "correct": 886,
- "percentage": "83.11444652908068",
- "from": "2023-09-01 03:00:00",
- "to": "2024-08-29 03:45:00"
}, - {
- "value": "4",
- "total": 1098,
- "correct": 958,
- "percentage": "87.24954462659382",
- "from": "2023-09-04 04:00:00",
- "to": "2024-08-29 04:00:00"
}, - {
- "value": "5",
- "total": 1254,
- "correct": 1081,
- "percentage": "86.20414673046251",
- "from": "2023-09-01 05:00:00",
- "to": "2024-08-30 05:30:00"
}, - {
- "value": "6",
- "total": 1548,
- "correct": 1279,
- "percentage": "82.62273901808786",
- "from": "2023-08-31 06:45:00",
- "to": "2024-08-28 06:30:00"
}, - {
- "value": "7",
- "total": 2000,
- "correct": 1660,
- "percentage": "83.0",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-29 07:30:00"
}, - {
- "value": "8",
- "total": 1819,
- "correct": 1476,
- "percentage": "81.14348543155579",
- "from": "2023-08-31 08:00:00",
- "to": "2024-08-29 08:30:00"
}, - {
- "value": "9",
- "total": 1540,
- "correct": 1249,
- "percentage": "81.1038961038961",
- "from": "2023-08-31 09:30:00",
- "to": "2024-08-29 09:15:00"
}
]
}, - {
- "name": "interval",
- "data": [
- {
- "value": "15",
- "total": 18855,
- "correct": 15203,
- "percentage": "80.63113232564307",
- "from": "2023-08-31 06:45:00",
- "to": "2024-08-30 10:00:00",
- "description": "15min"
}, - {
- "value": "30",
- "total": 7682,
- "correct": 6285,
- "percentage": "81.81463160635252",
- "from": "2023-08-31 14:30:00",
- "to": "2024-08-29 18:30:00",
- "description": "30min"
}, - {
- "value": "60",
- "total": 3180,
- "correct": 2630,
- "percentage": "82.70440251572327",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-27 12:00:00",
- "description": "Hourly"
}, - {
- "value": "240",
- "total": 599,
- "correct": 503,
- "percentage": "83.97328881469114",
- "from": "2023-09-01 12:00:00",
- "to": "2024-08-15 00:00:00",
- "description": "4 Hourly"
}, - {
- "value": "1440",
- "total": 29,
- "correct": 28,
- "percentage": "96.55172413793103",
- "from": "2023-09-03 00:00:00",
- "to": "2024-05-02 00:00:00",
- "description": "Daily"
}
]
}, - {
- "name": "overall",
- "data": [
- {
- "value": "overall",
- "total": 30345,
- "correct": 24649,
- "percentage": "81.2291975613775",
- "from": "2023-08-31 06:45:00",
- "to": "2024-08-30 10:00:00"
}
]
}, - {
- "name": "pattern",
- "data": [
- {
- "value": "Resistance",
- "total": 16454,
- "correct": 13565,
- "percentage": "82.44195940196913",
- "from": "2023-08-31 09:30:00",
- "to": "2024-08-30 05:30:00"
}, - {
- "value": "Support",
- "total": 13891,
- "correct": 11084,
- "percentage": "79.79267151392988",
- "from": "2023-08-31 06:45:00",
- "to": "2024-08-30 10:00:00"
}
]
}, - {
- "name": "significant",
- "data": [
- {
- "value": "10.0",
- "total": 6,
- "correct": 5,
- "percentage": "83.33333333333334",
- "from": "2024-01-03 07:30:00",
- "to": "2024-07-15 12:00:00"
}, - {
- "value": "3.0",
- "total": 11569,
- "correct": 9335,
- "percentage": "80.68977439709568",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 10:00:00"
}, - {
- "value": "4.0",
- "total": 8801,
- "correct": 7148,
- "percentage": "81.2180434041586",
- "from": "2023-08-31 06:45:00",
- "to": "2024-08-30 02:00:00"
}, - {
- "value": "5.0",
- "total": 5773,
- "correct": 4691,
- "percentage": "81.25757838212367",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-29 08:15:00"
}, - {
- "value": "6.0",
- "total": 2852,
- "correct": 2367,
- "percentage": "82.99438990182328",
- "from": "2023-08-31 08:15:00",
- "to": "2024-08-29 16:15:00"
}, - {
- "value": "7.0",
- "total": 1051,
- "correct": 881,
- "percentage": "83.82492863939106",
- "from": "2023-09-01 09:00:00",
- "to": "2024-08-29 00:00:00"
}, - {
- "value": "8.0",
- "total": 256,
- "correct": 199,
- "percentage": "77.734375",
- "from": "2023-09-01 14:00:00",
- "to": "2024-08-23 09:00:00"
}, - {
- "value": "9.0",
- "total": 37,
- "correct": 23,
- "percentage": "62.16216216216216",
- "from": "2023-09-21 14:15:00",
- "to": "2024-08-08 12:00:00"
}
]
}, - {
- "name": "symbol",
- "data": [
- {
- "value": "AUDCAD",
- "total": 1588,
- "correct": 1333,
- "percentage": "83.94206549118388",
- "from": "2023-09-01 07:45:00",
- "to": "2024-08-28 23:15:00"
}, - {
- "value": "AUDJPY",
- "total": 1562,
- "correct": 1221,
- "percentage": "78.16901408450704",
- "from": "2023-08-31 06:45:00",
- "to": "2024-08-30 05:30:00"
}, - {
- "value": "AUDNZD",
- "total": 1661,
- "correct": 1406,
- "percentage": "84.64780252859723",
- "from": "2023-08-31 08:30:00",
- "to": "2024-08-29 07:30:00"
}, - {
- "value": "AUDUSD",
- "total": 1667,
- "correct": 1389,
- "percentage": "83.32333533293341",
- "from": "2023-09-01 02:30:00",
- "to": "2024-08-29 04:00:00"
}, - {
- "value": "CHFJPY",
- "total": 1590,
- "correct": 1279,
- "percentage": "80.44025157232704",
- "from": "2023-09-04 16:00:00",
- "to": "2024-08-27 22:00:00"
}, - {
- "value": "EURAUD",
- "total": 1754,
- "correct": 1429,
- "percentage": "81.4709236031927",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-29 00:00:00"
}, - {
- "value": "EURCAD",
- "total": 1907,
- "correct": 1503,
- "percentage": "78.81489250131096",
- "from": "2023-09-03 00:00:00",
- "to": "2024-08-30 02:00:00"
}, - {
- "value": "EURCHF",
- "total": 1737,
- "correct": 1338,
- "percentage": "77.0293609671848",
- "from": "2023-08-31 09:30:00",
- "to": "2024-08-30 01:15:00"
}, - {
- "value": "EURGBP",
- "total": 1880,
- "correct": 1593,
- "percentage": "84.73404255319149",
- "from": "2023-09-01 09:45:00",
- "to": "2024-08-29 12:30:00"
}, - {
- "value": "EURJPY",
- "total": 1410,
- "correct": 1116,
- "percentage": "79.14893617021276",
- "from": "2023-09-01 06:00:00",
- "to": "2024-08-28 13:00:00"
}, - {
- "value": "EURUSD",
- "total": 1794,
- "correct": 1466,
- "percentage": "81.71683389074693",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-29 19:45:00"
}, - {
- "value": "GBPCHF",
- "total": 1714,
- "correct": 1360,
- "percentage": "79.3465577596266",
- "from": "2023-09-01 06:00:00",
- "to": "2024-08-29 10:00:00"
}, - {
- "value": "GBPJPY",
- "total": 1493,
- "correct": 1188,
- "percentage": "79.5713328868051",
- "from": "2023-09-01 05:00:00",
- "to": "2024-08-28 12:15:00"
}, - {
- "value": "GBPUSD",
- "total": 1623,
- "correct": 1336,
- "percentage": "82.31669747381393",
- "from": "2023-09-01 05:30:00",
- "to": "2024-08-28 15:15:00"
}, - {
- "value": "NZDUSD",
- "total": 1779,
- "correct": 1461,
- "percentage": "82.1247892074199",
- "from": "2023-08-31 08:15:00",
- "to": "2024-08-30 10:00:00"
}, - {
- "value": "USDCAD",
- "total": 1718,
- "correct": 1394,
- "percentage": "81.14086146682189",
- "from": "2023-08-31 12:00:00",
- "to": "2024-08-29 08:00:00"
}, - {
- "value": "USDCHF",
- "total": 1912,
- "correct": 1535,
- "percentage": "80.28242677824268",
- "from": "2023-09-01 09:00:00",
- "to": "2024-08-29 02:15:00"
}, - {
- "value": "USDJPY",
- "total": 1556,
- "correct": 1302,
- "percentage": "83.67609254498714",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-29 16:15:00"
}
]
}
]
}, - "statsid": 602086631711992000,
- "timezoneoffset": "",
- "timezoneoffsetcount": 0
}, - {
- "name": "Indices",
- "breakout": {
- "category": [
- {
- "name": "interval",
- "data": [
- {
- "value": "15",
- "total": 6710,
- "correct": 4802,
- "percentage": "71.56482861400895",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 12:45:00",
- "description": "15min"
}, - {
- "value": "30",
- "total": 3186,
- "correct": 2297,
- "percentage": "72.09667294413057",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 05:30:00",
- "description": "30min"
}, - {
- "value": "60",
- "total": 1432,
- "correct": 1041,
- "percentage": "72.69553072625699",
- "from": "2023-08-31 11:00:00",
- "to": "2024-08-29 05:00:00",
- "description": "Hourly"
}, - {
- "value": "240",
- "total": 134,
- "correct": 90,
- "percentage": "67.16417910447761",
- "from": "2023-09-04 12:00:00",
- "to": "2024-08-22 20:00:00",
- "description": "4 Hourly"
}, - {
- "value": "1440",
- "total": 62,
- "correct": 45,
- "percentage": "72.58064516129032",
- "from": "2023-09-11 00:00:00",
- "to": "2024-07-12 00:00:00",
- "description": "Daily"
}
]
}, - {
- "name": "pattern",
- "data": [
- {
- "value": "Ascending Triangle",
- "total": 376,
- "correct": 298,
- "percentage": "79.25531914893617",
- "from": "2023-08-31 11:30:00",
- "to": "2024-08-30 07:15:00"
}, - {
- "value": "Channel Down",
- "total": 609,
- "correct": 460,
- "percentage": "75.53366174055829",
- "from": "2023-09-04 07:00:00",
- "to": "2024-08-29 04:15:00"
}, - {
- "value": "Channel Up",
- "total": 693,
- "correct": 509,
- "percentage": "73.44877344877345",
- "from": "2023-08-31 13:00:00",
- "to": "2024-08-29 18:15:00"
}, - {
- "value": "Descending Triangle",
- "total": 203,
- "correct": 154,
- "percentage": "75.86206896551724",
- "from": "2023-08-31 14:45:00",
- "to": "2024-08-27 12:00:00"
}, - {
- "value": "Double Bottom",
- "total": 21,
- "correct": 18,
- "percentage": "85.71428571428571",
- "from": "2023-09-14 12:45:00",
- "to": "2024-08-15 12:45:00"
}, - {
- "value": "Double Top",
- "total": 21,
- "correct": 16,
- "percentage": "76.19047619047619",
- "from": "2023-09-08 08:30:00",
- "to": "2024-08-28 14:30:00"
}, - {
- "value": "Falling Wedge",
- "total": 573,
- "correct": 371,
- "percentage": "64.74694589877836",
- "from": "2023-09-01 07:30:00",
- "to": "2024-08-28 04:15:00"
}, - {
- "value": "Flag",
- "total": 243,
- "correct": 180,
- "percentage": "74.07407407407408",
- "from": "2023-08-31 23:00:00",
- "to": "2024-08-30 10:15:00"
}, - {
- "value": "Head and Shoulders",
- "total": 24,
- "correct": 18,
- "percentage": "75.0",
- "from": "2023-09-04 14:00:00",
- "to": "2024-07-09 13:30:00"
}, - {
- "value": "Inverse Head and Shoulders",
- "total": 31,
- "correct": 24,
- "percentage": "77.41935483870968",
- "from": "2023-09-08 14:00:00",
- "to": "2024-08-06 00:45:00"
}, - {
- "value": "Pennant",
- "total": 412,
- "correct": 240,
- "percentage": "58.252427184466015",
- "from": "2023-09-01 05:00:00",
- "to": "2024-08-29 13:30:00"
}, - {
- "value": "Rectangle",
- "total": 39,
- "correct": 26,
- "percentage": "66.66666666666666",
- "from": "2023-09-11 17:15:00",
- "to": "2024-07-08 07:15:00"
}, - {
- "value": "Resistance",
- "total": 2029,
- "correct": 1608,
- "percentage": "79.25086249383932",
- "from": "2023-08-31 11:00:00",
- "to": "2024-08-30 07:30:00"
}, - {
- "value": "Rising Wedge",
- "total": 914,
- "correct": 611,
- "percentage": "66.84901531728666",
- "from": "2023-08-31 15:30:00",
- "to": "2024-08-30 12:45:00"
}, - {
- "value": "Support",
- "total": 1699,
- "correct": 1246,
- "percentage": "73.33725721012361",
- "from": "2023-08-31 09:00:00",
- "to": "2024-08-30 12:45:00"
}, - {
- "value": "Triangle",
- "total": 3637,
- "correct": 2496,
- "percentage": "68.6279901017322",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 11:30:00"
}
]
}, - {
- "name": "hourofday",
- "data": [
- {
- "value": "0",
- "total": 488,
- "correct": 331,
- "percentage": "67.82786885245902",
- "from": "2023-09-01 00:00:00",
- "to": "2024-08-30 00:15:00"
}, - {
- "value": "1",
- "total": 269,
- "correct": 167,
- "percentage": "62.0817843866171",
- "from": "2023-09-04 01:15:00",
- "to": "2024-08-29 01:15:00"
}, - {
- "value": "10",
- "total": 417,
- "correct": 321,
- "percentage": "76.97841726618705",
- "from": "2023-09-01 10:30:00",
- "to": "2024-08-30 10:15:00"
}, - {
- "value": "11",
- "total": 520,
- "correct": 392,
- "percentage": "75.38461538461539",
- "from": "2023-08-31 11:00:00",
- "to": "2024-08-30 11:30:00"
}, - {
- "value": "12",
- "total": 775,
- "correct": 555,
- "percentage": "71.61290322580646",
- "from": "2023-08-31 12:00:00",
- "to": "2024-08-30 12:45:00"
}, - {
- "value": "13",
- "total": 890,
- "correct": 677,
- "percentage": "76.06741573033707",
- "from": "2023-08-31 13:00:00",
- "to": "2024-08-29 13:45:00"
}, - {
- "value": "14",
- "total": 893,
- "correct": 668,
- "percentage": "74.80403135498321",
- "from": "2023-08-31 14:30:00",
- "to": "2024-08-29 14:00:00"
}, - {
- "value": "15",
- "total": 633,
- "correct": 484,
- "percentage": "76.4612954186414",
- "from": "2023-08-31 15:00:00",
- "to": "2024-08-28 15:30:00"
}, - {
- "value": "16",
- "total": 366,
- "correct": 269,
- "percentage": "73.49726775956285",
- "from": "2023-08-31 16:15:00",
- "to": "2024-08-27 16:00:00"
}, - {
- "value": "17",
- "total": 378,
- "correct": 271,
- "percentage": "71.6931216931217",
- "from": "2023-09-05 17:00:00",
- "to": "2024-08-28 17:45:00"
}, - {
- "value": "18",
- "total": 408,
- "correct": 273,
- "percentage": "66.91176470588235",
- "from": "2023-09-01 18:45:00",
- "to": "2024-08-29 18:15:00"
}, - {
- "value": "19",
- "total": 500,
- "correct": 343,
- "percentage": "68.60000000000001",
- "from": "2023-08-31 19:15:00",
- "to": "2024-08-28 19:00:00"
}, - {
- "value": "2",
- "total": 251,
- "correct": 167,
- "percentage": "66.53386454183267",
- "from": "2023-09-04 02:15:00",
- "to": "2024-08-30 02:15:00"
}, - {
- "value": "20",
- "total": 350,
- "correct": 201,
- "percentage": "57.42857142857143",
- "from": "2023-09-08 20:00:00",
- "to": "2024-08-27 20:45:00"
}, - {
- "value": "21",
- "total": 71,
- "correct": 40,
- "percentage": "56.33802816901409",
- "from": "2023-09-14 21:30:00",
- "to": "2024-08-23 21:00:00"
}, - {
- "value": "22",
- "total": 105,
- "correct": 47,
- "percentage": "44.761904761904766",
- "from": "2023-09-06 22:15:00",
- "to": "2024-08-21 22:00:00"
}, - {
- "value": "23",
- "total": 337,
- "correct": 198,
- "percentage": "58.753709198813056",
- "from": "2023-08-31 23:00:00",
- "to": "2024-08-26 23:45:00"
}, - {
- "value": "3",
- "total": 291,
- "correct": 206,
- "percentage": "70.79037800687286",
- "from": "2023-09-05 03:30:00",
- "to": "2024-08-27 03:30:00"
}, - {
- "value": "4",
- "total": 337,
- "correct": 248,
- "percentage": "73.59050445103857",
- "from": "2023-09-01 04:00:00",
- "to": "2024-08-30 04:15:00"
}, - {
- "value": "5",
- "total": 450,
- "correct": 343,
- "percentage": "76.22222222222223",
- "from": "2023-09-01 05:00:00",
- "to": "2024-08-30 05:45:00"
}, - {
- "value": "6",
- "total": 718,
- "correct": 547,
- "percentage": "76.18384401114207",
- "from": "2023-09-01 06:15:00",
- "to": "2024-08-30 06:45:00"
}, - {
- "value": "7",
- "total": 845,
- "correct": 643,
- "percentage": "76.09467455621302",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 07:30:00"
}, - {
- "value": "8",
- "total": 744,
- "correct": 526,
- "percentage": "70.6989247311828",
- "from": "2023-09-05 08:00:00",
- "to": "2024-08-30 08:45:00"
}, - {
- "value": "9",
- "total": 488,
- "correct": 358,
- "percentage": "73.36065573770492",
- "from": "2023-08-31 09:00:00",
- "to": "2024-08-27 09:45:00"
}
]
}, - {
- "name": "significant",
- "data": [
- {
- "value": "10.0",
- "total": 2,
- "correct": 1,
- "percentage": "50.0",
- "from": "2024-03-25 13:00:00",
- "to": "2024-03-25 14:00:00"
}, - {
- "value": "3.0",
- "total": 1517,
- "correct": 1171,
- "percentage": "77.19182597231378",
- "from": "2023-08-31 09:00:00",
- "to": "2024-08-30 07:30:00"
}, - {
- "value": "4.0",
- "total": 1119,
- "correct": 862,
- "percentage": "77.03306523681859",
- "from": "2023-08-31 11:30:00",
- "to": "2024-08-30 12:45:00"
}, - {
- "value": "5.0",
- "total": 620,
- "correct": 464,
- "percentage": "74.83870967741936",
- "from": "2023-09-01 13:30:00",
- "to": "2024-08-28 00:00:00"
}, - {
- "value": "6.0",
- "total": 332,
- "correct": 255,
- "percentage": "76.80722891566265",
- "from": "2023-08-31 11:00:00",
- "to": "2024-08-28 15:00:00"
}, - {
- "value": "7.0",
- "total": 101,
- "correct": 74,
- "percentage": "73.26732673267327",
- "from": "2023-09-04 14:30:00",
- "to": "2024-08-29 04:15:00"
}, - {
- "value": "8.0",
- "total": 30,
- "correct": 21,
- "percentage": "70.0",
- "from": "2023-09-11 05:00:00",
- "to": "2024-08-16 16:45:00"
}, - {
- "value": "9.0",
- "total": 7,
- "correct": 6,
- "percentage": "85.71428571428571",
- "from": "2023-08-31 11:30:00",
- "to": "2024-04-17 07:45:00"
}
]
}, - {
- "name": "quality",
- "data": [
- {
- "value": "0.1",
- "total": 32,
- "correct": 29,
- "percentage": "90.625",
- "from": "2023-09-11 11:30:00",
- "to": "2024-08-22 13:00:00"
}, - {
- "value": "0.2",
- "total": 216,
- "correct": 183,
- "percentage": "84.72222222222221",
- "from": "2023-08-31 07:45:00",
- "to": "2024-08-26 14:30:00"
}, - {
- "value": "0.3",
- "total": 593,
- "correct": 468,
- "percentage": "78.92074198988196",
- "from": "2023-09-01 05:00:00",
- "to": "2024-08-30 07:15:00"
}, - {
- "value": "0.4",
- "total": 1108,
- "correct": 830,
- "percentage": "74.90974729241877",
- "from": "2023-08-31 07:45:00",
- "to": "2024-08-29 14:00:00"
}, - {
- "value": "0.5",
- "total": 1779,
- "correct": 1227,
- "percentage": "68.97133220910624",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 11:30:00"
}, - {
- "value": "0.6",
- "total": 1741,
- "correct": 1174,
- "percentage": "67.43251005169442",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 12:45:00"
}, - {
- "value": "0.7",
- "total": 1387,
- "correct": 894,
- "percentage": "64.45565969718817",
- "from": "2023-08-31 11:30:00",
- "to": "2024-08-30 12:30:00"
}, - {
- "value": "0.8",
- "total": 712,
- "correct": 470,
- "percentage": "66.01123595505618",
- "from": "2023-08-31 13:00:00",
- "to": "2024-08-30 10:15:00"
}, - {
- "value": "0.9",
- "total": 215,
- "correct": 140,
- "percentage": "65.11627906976744",
- "from": "2023-08-31 23:00:00",
- "to": "2024-08-29 13:30:00"
}, - {
- "value": "1.0",
- "total": 13,
- "correct": 6,
- "percentage": "46.15384615384615",
- "from": "2023-09-19 17:30:00",
- "to": "2024-08-08 17:15:00"
}
]
}, - {
- "name": "direction",
- "data": [
- {
- "value": "1",
- "total": 6079,
- "correct": 4529,
- "percentage": "74.50238526073367",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 10:15:00"
}, - {
- "value": "-1",
- "total": 5445,
- "correct": 3746,
- "percentage": "68.79706152433425",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 12:45:00"
}
]
}, - {
- "name": "breakout",
- "data": [
- {
- "value": "0.0",
- "total": 422,
- "correct": 316,
- "percentage": "74.88151658767772",
- "from": "2023-08-31 07:45:00",
- "to": "2024-08-27 09:30:00"
}, - {
- "value": "0.1",
- "total": 743,
- "correct": 558,
- "percentage": "75.10094212651414",
- "from": "2023-08-31 07:45:00",
- "to": "2024-08-30 07:15:00"
}, - {
- "value": "0.2",
- "total": 687,
- "correct": 496,
- "percentage": "72.19796215429403",
- "from": "2023-08-31 15:30:00",
- "to": "2024-08-30 11:30:00"
}, - {
- "value": "0.3",
- "total": 637,
- "correct": 446,
- "percentage": "70.01569858712716",
- "from": "2023-08-31 16:15:00",
- "to": "2024-08-30 10:15:00"
}, - {
- "value": "0.4",
- "total": 569,
- "correct": 395,
- "percentage": "69.42003514938489",
- "from": "2023-08-31 14:30:00",
- "to": "2024-08-30 12:45:00"
}, - {
- "value": "0.5",
- "total": 522,
- "correct": 351,
- "percentage": "67.24137931034483",
- "from": "2023-09-01 18:45:00",
- "to": "2024-08-30 02:15:00"
}, - {
- "value": "0.6",
- "total": 454,
- "correct": 297,
- "percentage": "65.41850220264317",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 12:30:00"
}, - {
- "value": "0.7",
- "total": 378,
- "correct": 268,
- "percentage": "70.8994708994709",
- "from": "2023-09-04 11:15:00",
- "to": "2024-08-30 05:30:00"
}, - {
- "value": "0.8",
- "total": 382,
- "correct": 248,
- "percentage": "64.92146596858639",
- "from": "2023-09-01 04:00:00",
- "to": "2024-08-29 18:00:00"
}, - {
- "value": "0.9",
- "total": 302,
- "correct": 187,
- "percentage": "61.920529801324506",
- "from": "2023-08-31 13:00:00",
- "to": "2024-08-30 08:45:00"
}, - {
- "value": "1.0",
- "total": 2700,
- "correct": 1859,
- "percentage": "68.85185185185185",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 07:00:00"
}
]
}, - {
- "name": "symbol",
- "data": [
- {
- "value": "ASX 225",
- "total": 1442,
- "correct": 1057,
- "percentage": "73.30097087378641",
- "from": "2023-09-04 23:30:00",
- "to": "2024-08-30 11:15:00"
}, - {
- "value": "CAC 40",
- "total": 1066,
- "correct": 744,
- "percentage": "69.7936210131332",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-29 13:30:00"
}, - {
- "value": "DAX 40",
- "total": 1376,
- "correct": 1013,
- "percentage": "73.61918604651163",
- "from": "2023-08-31 11:00:00",
- "to": "2024-08-30 12:45:00"
}, - {
- "value": "DOW 30",
- "total": 2028,
- "correct": 1420,
- "percentage": "70.01972386587771",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 12:30:00"
}, - {
- "value": "FTSE 100",
- "total": 1142,
- "correct": 824,
- "percentage": "72.15411558669001",
- "from": "2023-08-31 11:30:00",
- "to": "2024-08-30 12:45:00"
}, - {
- "value": "NAS 100",
- "total": 1099,
- "correct": 781,
- "percentage": "71.0646041856233",
- "from": "2023-08-31 09:00:00",
- "to": "2024-07-12 13:30:00"
}, - {
- "value": "Nikkei 225",
- "total": 1357,
- "correct": 938,
- "percentage": "69.12306558585114",
- "from": "2023-08-31 23:00:00",
- "to": "2024-08-30 11:30:00"
}, - {
- "value": "US 500",
- "total": 2014,
- "correct": 1498,
- "percentage": "74.37934458788482",
- "from": "2023-08-31 11:30:00",
- "to": "2024-08-30 07:30:00"
}
]
}, - {
- "name": "overall",
- "data": [
- {
- "value": "overall",
- "total": 11524,
- "correct": 8275,
- "percentage": "71.80666435265533",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 12:45:00"
}
]
}, - {
- "name": "initialtrend",
- "data": [
- {
- "value": "0.0",
- "total": 115,
- "correct": 88,
- "percentage": "76.52173913043478",
- "from": "2023-09-04 07:00:00",
- "to": "2024-08-22 20:00:00"
}, - {
- "value": "0.1",
- "total": 731,
- "correct": 534,
- "percentage": "73.05061559507524",
- "from": "2023-08-31 07:45:00",
- "to": "2024-08-29 07:00:00"
}, - {
- "value": "0.2",
- "total": 1150,
- "correct": 791,
- "percentage": "68.78260869565217",
- "from": "2023-08-31 16:15:00",
- "to": "2024-08-30 04:15:00"
}, - {
- "value": "0.3",
- "total": 1295,
- "correct": 902,
- "percentage": "69.65250965250965",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 07:00:00"
}, - {
- "value": "0.4",
- "total": 1041,
- "correct": 731,
- "percentage": "70.2209414024976",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-30 11:30:00"
}, - {
- "value": "0.5",
- "total": 859,
- "correct": 605,
- "percentage": "70.43073341094296",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 12:30:00"
}, - {
- "value": "0.6",
- "total": 615,
- "correct": 427,
- "percentage": "69.4308943089431",
- "from": "2023-09-05 12:15:00",
- "to": "2024-08-30 12:45:00"
}, - {
- "value": "0.7",
- "total": 435,
- "correct": 289,
- "percentage": "66.4367816091954",
- "from": "2023-08-31 13:00:00",
- "to": "2024-08-30 07:15:00"
}, - {
- "value": "0.8",
- "total": 351,
- "correct": 241,
- "percentage": "68.66096866096866",
- "from": "2023-08-31 23:00:00",
- "to": "2024-08-30 10:15:00"
}, - {
- "value": "0.9",
- "total": 264,
- "correct": 169,
- "percentage": "64.01515151515152",
- "from": "2023-08-31 23:00:00",
- "to": "2024-08-29 13:30:00"
}, - {
- "value": "1.0",
- "total": 940,
- "correct": 644,
- "percentage": "68.51063829787233",
- "from": "2023-08-31 15:30:00",
- "to": "2024-08-29 13:30:00"
}
]
}, - {
- "name": "symmetry",
- "data": [
- {
- "value": "0.0",
- "total": 217,
- "correct": 152,
- "percentage": "70.04608294930875",
- "from": "2023-09-05 04:15:00",
- "to": "2024-08-27 10:00:00"
}, - {
- "value": "0.1",
- "total": 345,
- "correct": 265,
- "percentage": "76.81159420289855",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-26 05:30:00"
}, - {
- "value": "0.2",
- "total": 522,
- "correct": 405,
- "percentage": "77.58620689655173",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-29 07:00:00"
}, - {
- "value": "0.3",
- "total": 692,
- "correct": 524,
- "percentage": "75.72254335260115",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 07:15:00"
}, - {
- "value": "0.4",
- "total": 912,
- "correct": 673,
- "percentage": "73.79385964912281",
- "from": "2023-08-31 11:30:00",
- "to": "2024-08-30 08:45:00"
}, - {
- "value": "0.5",
- "total": 1105,
- "correct": 785,
- "percentage": "71.04072398190046",
- "from": "2023-08-31 11:30:00",
- "to": "2024-08-30 06:45:00"
}, - {
- "value": "0.6",
- "total": 1126,
- "correct": 765,
- "percentage": "67.93960923623446",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 12:45:00"
}, - {
- "value": "0.7",
- "total": 1166,
- "correct": 742,
- "percentage": "63.63636363636363",
- "from": "2023-08-31 23:00:00",
- "to": "2024-08-30 05:15:00"
}, - {
- "value": "0.8",
- "total": 989,
- "correct": 658,
- "percentage": "66.53185035389282",
- "from": "2023-08-31 07:45:00",
- "to": "2024-08-30 12:30:00"
}, - {
- "value": "0.9",
- "total": 577,
- "correct": 367,
- "percentage": "63.60485268630849",
- "from": "2023-08-31 19:15:00",
- "to": "2024-08-30 11:30:00"
}, - {
- "value": "1.0",
- "total": 145,
- "correct": 85,
- "percentage": "58.620689655172406",
- "from": "2023-09-04 23:30:00",
- "to": "2024-08-29 18:15:00"
}
]
}, - {
- "name": "clarity",
- "data": [
- {
- "value": "0.0",
- "total": 791,
- "correct": 594,
- "percentage": "75.09481668773704",
- "from": "2023-08-31 07:45:00",
- "to": "2024-08-28 07:00:00"
}, - {
- "value": "0.1",
- "total": 202,
- "correct": 152,
- "percentage": "75.24752475247524",
- "from": "2023-08-31 16:15:00",
- "to": "2024-08-26 18:45:00"
}, - {
- "value": "0.2",
- "total": 233,
- "correct": 176,
- "percentage": "75.53648068669528",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 07:15:00"
}, - {
- "value": "0.3",
- "total": 353,
- "correct": 270,
- "percentage": "76.48725212464589",
- "from": "2023-09-01 13:30:00",
- "to": "2024-08-29 14:00:00"
}, - {
- "value": "0.4",
- "total": 437,
- "correct": 309,
- "percentage": "70.70938215102976",
- "from": "2023-09-01 12:00:00",
- "to": "2024-08-30 07:00:00"
}, - {
- "value": "0.5",
- "total": 579,
- "correct": 421,
- "percentage": "72.71157167530224",
- "from": "2023-09-01 07:30:00",
- "to": "2024-08-30 07:15:00"
}, - {
- "value": "0.6",
- "total": 821,
- "correct": 551,
- "percentage": "67.11327649208283",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 11:30:00"
}, - {
- "value": "0.7",
- "total": 1027,
- "correct": 706,
- "percentage": "68.74391431353457",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 06:45:00"
}, - {
- "value": "0.8",
- "total": 1314,
- "correct": 908,
- "percentage": "69.10197869101978",
- "from": "2023-08-31 15:30:00",
- "to": "2024-08-30 12:30:00"
}, - {
- "value": "0.9",
- "total": 1382,
- "correct": 921,
- "percentage": "66.6425470332851",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 12:45:00"
}, - {
- "value": "1.0",
- "total": 657,
- "correct": 413,
- "percentage": "62.86149162861492",
- "from": "2023-08-31 11:30:00",
- "to": "2024-08-30 10:15:00"
}
]
}
]
}, - "emerging": {
- "category": [
- {
- "name": "direction",
- "data": [
- {
- "value": "1",
- "total": 4998,
- "correct": 4175,
- "percentage": "83.53341336534615",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-29 03:15:00"
}, - {
- "value": "-1",
- "total": 4281,
- "correct": 3211,
- "percentage": "75.00583975706611",
- "from": "2023-08-31 09:30:00",
- "to": "2024-08-29 06:15:00"
}
]
}, - {
- "name": "hourofday",
- "data": [
- {
- "value": "0",
- "total": 329,
- "correct": 259,
- "percentage": "78.72340425531915",
- "from": "2023-09-04 00:00:00",
- "to": "2024-08-29 00:45:00"
}, - {
- "value": "1",
- "total": 197,
- "correct": 160,
- "percentage": "81.21827411167513",
- "from": "2023-09-05 01:15:00",
- "to": "2024-08-28 01:00:00"
}, - {
- "value": "10",
- "total": 431,
- "correct": 364,
- "percentage": "84.45475638051045",
- "from": "2023-08-31 10:15:00",
- "to": "2024-08-28 10:15:00"
}, - {
- "value": "11",
- "total": 464,
- "correct": 397,
- "percentage": "85.5603448275862",
- "from": "2023-08-31 11:00:00",
- "to": "2024-08-28 11:45:00"
}, - {
- "value": "12",
- "total": 593,
- "correct": 477,
- "percentage": "80.43844856661046",
- "from": "2023-08-31 12:00:00",
- "to": "2024-08-28 12:00:00"
}, - {
- "value": "13",
- "total": 664,
- "correct": 546,
- "percentage": "82.2289156626506",
- "from": "2023-08-31 13:00:00",
- "to": "2024-08-28 13:45:00"
}, - {
- "value": "14",
- "total": 706,
- "correct": 550,
- "percentage": "77.90368271954674",
- "from": "2023-08-31 14:00:00",
- "to": "2024-08-28 14:45:00"
}, - {
- "value": "15",
- "total": 583,
- "correct": 443,
- "percentage": "75.98627787307034",
- "from": "2023-08-31 15:30:00",
- "to": "2024-08-28 15:30:00"
}, - {
- "value": "16",
- "total": 471,
- "correct": 363,
- "percentage": "77.07006369426752",
- "from": "2023-08-31 16:30:00",
- "to": "2024-08-23 16:15:00"
}, - {
- "value": "17",
- "total": 436,
- "correct": 327,
- "percentage": "75.0",
- "from": "2023-08-31 17:15:00",
- "to": "2024-08-26 17:45:00"
}, - {
- "value": "18",
- "total": 376,
- "correct": 291,
- "percentage": "77.3936170212766",
- "from": "2023-08-31 18:45:00",
- "to": "2024-08-22 18:30:00"
}, - {
- "value": "19",
- "total": 439,
- "correct": 345,
- "percentage": "78.5876993166287",
- "from": "2023-08-31 19:30:00",
- "to": "2024-08-28 19:30:00"
}, - {
- "value": "2",
- "total": 191,
- "correct": 162,
- "percentage": "84.81675392670157",
- "from": "2023-09-01 02:15:00",
- "to": "2024-08-29 02:45:00"
}, - {
- "value": "20",
- "total": 265,
- "correct": 170,
- "percentage": "64.15094339622641",
- "from": "2023-09-08 20:00:00",
- "to": "2024-08-23 20:00:00"
}, - {
- "value": "21",
- "total": 48,
- "correct": 34,
- "percentage": "70.83333333333334",
- "from": "2023-09-12 21:00:00",
- "to": "2024-08-23 21:00:00"
}, - {
- "value": "22",
- "total": 69,
- "correct": 56,
- "percentage": "81.15942028985508",
- "from": "2023-09-04 22:00:00",
- "to": "2024-08-27 22:30:00"
}, - {
- "value": "23",
- "total": 232,
- "correct": 166,
- "percentage": "71.55172413793103",
- "from": "2023-09-03 23:00:00",
- "to": "2024-08-26 23:30:00"
}, - {
- "value": "3",
- "total": 227,
- "correct": 166,
- "percentage": "73.12775330396477",
- "from": "2023-09-01 03:45:00",
- "to": "2024-08-29 03:15:00"
}, - {
- "value": "4",
- "total": 204,
- "correct": 166,
- "percentage": "81.37254901960785",
- "from": "2023-09-01 04:00:00",
- "to": "2024-08-28 04:00:00"
}, - {
- "value": "5",
- "total": 308,
- "correct": 281,
- "percentage": "91.23376623376623",
- "from": "2023-09-01 05:45:00",
- "to": "2024-08-28 05:45:00"
}, - {
- "value": "6",
- "total": 410,
- "correct": 339,
- "percentage": "82.68292682926828",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-29 06:15:00"
}, - {
- "value": "7",
- "total": 527,
- "correct": 441,
- "percentage": "83.68121442125236",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-26 07:45:00"
}, - {
- "value": "8",
- "total": 670,
- "correct": 523,
- "percentage": "78.05970149253731",
- "from": "2023-09-01 08:45:00",
- "to": "2024-08-28 08:15:00"
}, - {
- "value": "9",
- "total": 439,
- "correct": 360,
- "percentage": "82.00455580865604",
- "from": "2023-08-31 09:30:00",
- "to": "2024-08-27 09:45:00"
}
]
}, - {
- "name": "interval",
- "data": [
- {
- "value": "15",
- "total": 5569,
- "correct": 4434,
- "percentage": "79.61932124259292",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-29 06:15:00",
- "description": "15min"
}, - {
- "value": "30",
- "total": 2502,
- "correct": 2002,
- "percentage": "80.01598721023181",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-29 06:00:00",
- "description": "30min"
}, - {
- "value": "60",
- "total": 1062,
- "correct": 829,
- "percentage": "78.060263653484",
- "from": "2023-09-03 23:00:00",
- "to": "2024-08-22 22:00:00",
- "description": "Hourly"
}, - {
- "value": "240",
- "total": 119,
- "correct": 94,
- "percentage": "78.99159663865547",
- "from": "2023-09-08 16:00:00",
- "to": "2024-07-23 16:00:00",
- "description": "4 Hourly"
}, - {
- "value": "1440",
- "total": 27,
- "correct": 27,
- "percentage": "100.0",
- "from": "2023-09-06 00:00:00",
- "to": "2024-06-27 00:00:00",
- "description": "Daily"
}
]
}, - {
- "name": "overall",
- "data": [
- {
- "value": "overall",
- "total": 9279,
- "correct": 7386,
- "percentage": "79.59909473003557",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-29 06:15:00"
}
]
}, - {
- "name": "pattern",
- "data": [
- {
- "value": "Resistance",
- "total": 4998,
- "correct": 4175,
- "percentage": "83.53341336534615",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-29 03:15:00"
}, - {
- "value": "Support",
- "total": 4281,
- "correct": 3211,
- "percentage": "75.00583975706611",
- "from": "2023-08-31 09:30:00",
- "to": "2024-08-29 06:15:00"
}
]
}, - {
- "name": "significant",
- "data": [
- {
- "value": "10.0",
- "total": 37,
- "correct": 26,
- "percentage": "70.27027027027027",
- "from": "2023-10-18 02:15:00",
- "to": "2024-03-25 15:00:00"
}, - {
- "value": "3.0",
- "total": 3508,
- "correct": 2802,
- "percentage": "79.8745724059293",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-29 03:15:00"
}, - {
- "value": "4.0",
- "total": 2842,
- "correct": 2247,
- "percentage": "79.06403940886699",
- "from": "2023-08-31 11:00:00",
- "to": "2024-08-29 06:15:00"
}, - {
- "value": "5.0",
- "total": 1694,
- "correct": 1303,
- "percentage": "76.9185360094451",
- "from": "2023-08-31 07:45:00",
- "to": "2024-08-28 15:15:00"
}, - {
- "value": "6.0",
- "total": 848,
- "correct": 732,
- "percentage": "86.32075471698113",
- "from": "2023-08-31 07:30:00",
- "to": "2024-08-28 13:45:00"
}, - {
- "value": "7.0",
- "total": 251,
- "correct": 199,
- "percentage": "79.2828685258964",
- "from": "2023-09-04 11:15:00",
- "to": "2024-08-29 02:45:00"
}, - {
- "value": "8.0",
- "total": 77,
- "correct": 61,
- "percentage": "79.22077922077922",
- "from": "2023-09-07 04:15:00",
- "to": "2024-08-27 11:30:00"
}, - {
- "value": "9.0",
- "total": 22,
- "correct": 16,
- "percentage": "72.72727272727273",
- "from": "2023-08-31 11:15:00",
- "to": "2024-06-05 07:00:00"
}
]
}, - {
- "name": "symbol",
- "data": [
- {
- "value": "ASX 225",
- "total": 1081,
- "correct": 842,
- "percentage": "77.89084181313598",
- "from": "2023-09-03 23:00:00",
- "to": "2024-08-29 03:15:00"
}, - {
- "value": "CAC 40",
- "total": 804,
- "correct": 638,
- "percentage": "79.35323383084577",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-28 14:45:00"
}, - {
- "value": "DAX 40",
- "total": 1222,
- "correct": 998,
- "percentage": "81.66939443535188",
- "from": "2023-08-31 16:30:00",
- "to": "2024-08-27 10:00:00"
}, - {
- "value": "DOW 30",
- "total": 1693,
- "correct": 1405,
- "percentage": "82.98877731836976",
- "from": "2023-09-01 02:15:00",
- "to": "2024-08-28 19:30:00"
}, - {
- "value": "FTSE 100",
- "total": 1041,
- "correct": 772,
- "percentage": "74.15946205571565",
- "from": "2023-08-31 07:45:00",
- "to": "2024-08-29 06:15:00"
}, - {
- "value": "NAS 100",
- "total": 831,
- "correct": 673,
- "percentage": "80.98676293622142",
- "from": "2023-08-31 07:30:00",
- "to": "2024-07-01 13:30:00"
}, - {
- "value": "Nikkei 225",
- "total": 1095,
- "correct": 813,
- "percentage": "74.24657534246575",
- "from": "2023-09-08 00:15:00",
- "to": "2024-08-28 15:00:00"
}, - {
- "value": "US 500",
- "total": 1512,
- "correct": 1245,
- "percentage": "82.34126984126983",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-28 12:00:00"
}
]
}
]
}, - "statsid": 602086631712649100,
- "timezoneoffset": "",
- "timezoneoffsetcount": 0
}, - {
- "name": "Stocks",
- "breakout": {
- "category": [
- {
- "name": "overall",
- "data": [
- {
- "value": "overall",
- "total": 10654,
- "correct": 7457,
- "percentage": "69.99249108316126",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-30 16:45:00"
}
]
}, - {
- "name": "hourofday",
- "data": [
- {
- "value": "0",
- "total": 37,
- "correct": 37,
- "percentage": "100.0",
- "from": "2023-10-06 00:00:00",
- "to": "2023-10-06 00:00:00"
}, - {
- "value": "13",
- "total": 2179,
- "correct": 1540,
- "percentage": "70.67462138595685",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-30 13:30:00"
}, - {
- "value": "14",
- "total": 2240,
- "correct": 1569,
- "percentage": "70.04464285714286",
- "from": "2023-08-31 14:00:00",
- "to": "2024-08-29 14:30:00"
}, - {
- "value": "15",
- "total": 973,
- "correct": 699,
- "percentage": "71.83967112024666",
- "from": "2023-08-31 15:30:00",
- "to": "2024-08-28 15:00:00"
}, - {
- "value": "16",
- "total": 897,
- "correct": 622,
- "percentage": "69.3422519509476",
- "from": "2023-08-31 16:00:00",
- "to": "2024-08-30 16:45:00"
}, - {
- "value": "17",
- "total": 1048,
- "correct": 733,
- "percentage": "69.94274809160305",
- "from": "2023-08-31 17:15:00",
- "to": "2024-08-29 17:30:00"
}, - {
- "value": "18",
- "total": 1181,
- "correct": 852,
- "percentage": "72.14225232853514",
- "from": "2023-08-31 18:00:00",
- "to": "2024-08-28 18:45:00"
}, - {
- "value": "19",
- "total": 1560,
- "correct": 1037,
- "percentage": "66.47435897435898",
- "from": "2023-08-31 19:30:00",
- "to": "2024-08-28 19:00:00"
}, - {
- "value": "20",
- "total": 539,
- "correct": 368,
- "percentage": "68.27458256029685",
- "from": "2023-11-06 20:15:00",
- "to": "2024-03-08 20:30:00"
}
]
}, - {
- "name": "clarity",
- "data": [
- {
- "value": "0.0",
- "total": 1230,
- "correct": 875,
- "percentage": "71.13821138211382",
- "from": "2023-08-31 19:30:00",
- "to": "2024-08-27 19:15:00"
}, - {
- "value": "0.1",
- "total": 317,
- "correct": 245,
- "percentage": "77.28706624605678",
- "from": "2023-09-05 19:45:00",
- "to": "2024-08-26 18:15:00"
}, - {
- "value": "0.2",
- "total": 357,
- "correct": 266,
- "percentage": "74.50980392156863",
- "from": "2023-08-31 14:30:00",
- "to": "2024-08-27 19:15:00"
}, - {
- "value": "0.3",
- "total": 481,
- "correct": 345,
- "percentage": "71.72557172557173",
- "from": "2023-08-31 14:30:00",
- "to": "2024-08-29 13:30:00"
}, - {
- "value": "0.4",
- "total": 575,
- "correct": 419,
- "percentage": "72.86956521739131",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-27 16:15:00"
}, - {
- "value": "0.5",
- "total": 758,
- "correct": 525,
- "percentage": "69.26121372031663",
- "from": "2023-08-31 14:00:00",
- "to": "2024-08-29 16:45:00"
}, - {
- "value": "0.6",
- "total": 915,
- "correct": 623,
- "percentage": "68.08743169398907",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-28 18:45:00"
}, - {
- "value": "0.7",
- "total": 1038,
- "correct": 736,
- "percentage": "70.90558766859345",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-29 17:30:00"
}, - {
- "value": "0.8",
- "total": 1200,
- "correct": 804,
- "percentage": "67.0",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-30 13:30:00"
}, - {
- "value": "0.9",
- "total": 1095,
- "correct": 702,
- "percentage": "64.10958904109589",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-29 16:45:00"
}, - {
- "value": "1.0",
- "total": 488,
- "correct": 298,
- "percentage": "61.065573770491795",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-30 16:45:00"
}
]
}, - {
- "name": "direction",
- "data": [
- {
- "value": "1",
- "total": 5365,
- "correct": 3909,
- "percentage": "72.86113699906804",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-30 16:45:00"
}, - {
- "value": "-1",
- "total": 5289,
- "correct": 3548,
- "percentage": "67.08262431461523",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-29 16:45:00"
}
]
}, - {
- "name": "initialtrend",
- "data": [
- {
- "value": "0.0",
- "total": 136,
- "correct": 106,
- "percentage": "77.94117647058823",
- "from": "2023-09-15 17:00:00",
- "to": "2024-08-27 17:15:00"
}, - {
- "value": "0.1",
- "total": 804,
- "correct": 603,
- "percentage": "75.0",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-28 15:00:00"
}, - {
- "value": "0.2",
- "total": 1308,
- "correct": 911,
- "percentage": "69.64831804281346",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-29 17:30:00"
}, - {
- "value": "0.3",
- "total": 1333,
- "correct": 929,
- "percentage": "69.69242310577644",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-28 19:00:00"
}, - {
- "value": "0.4",
- "total": 1094,
- "correct": 783,
- "percentage": "71.57221206581352",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-29 14:00:00"
}, - {
- "value": "0.5",
- "total": 898,
- "correct": 609,
- "percentage": "67.81737193763921",
- "from": "2023-08-31 14:30:00",
- "to": "2024-08-29 16:45:00"
}, - {
- "value": "0.6",
- "total": 669,
- "correct": 443,
- "percentage": "66.21823617339312",
- "from": "2023-09-05 18:15:00",
- "to": "2024-08-29 13:30:00"
}, - {
- "value": "0.7",
- "total": 489,
- "correct": 346,
- "percentage": "70.75664621676891",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-29 16:45:00"
}, - {
- "value": "0.8",
- "total": 367,
- "correct": 242,
- "percentage": "65.9400544959128",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-29 14:00:00"
}, - {
- "value": "0.9",
- "total": 276,
- "correct": 188,
- "percentage": "68.11594202898551",
- "from": "2023-09-05 13:30:00",
- "to": "2024-08-28 18:45:00"
}, - {
- "value": "1.0",
- "total": 1080,
- "correct": 678,
- "percentage": "62.77777777777778",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-30 16:45:00"
}
]
}, - {
- "name": "symbol",
- "data": [
- {
- "value": "Adobe Systems Incorporated",
- "total": 563,
- "correct": 406,
- "percentage": "72.11367673179396",
- "from": "2023-09-01 14:30:00",
- "to": "2024-08-28 18:45:00"
}, - {
- "value": "Advanced Micro Devices",
- "total": 540,
- "correct": 378,
- "percentage": "70.0",
- "from": "2023-08-31 15:30:00",
- "to": "2024-08-27 17:15:00"
}, - {
- "value": "Alibaba",
- "total": 431,
- "correct": 279,
- "percentage": "64.73317865429235",
- "from": "2023-09-01 13:30:00",
- "to": "2024-08-27 19:45:00"
}, - {
- "value": "Amazon",
- "total": 485,
- "correct": 344,
- "percentage": "70.9278350515464",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-26 18:30:00"
}, - {
- "value": "Apple",
- "total": 490,
- "correct": 353,
- "percentage": "72.0408163265306",
- "from": "2023-09-01 18:15:00",
- "to": "2024-08-29 16:45:00"
}, - {
- "value": "Baidu",
- "total": 482,
- "correct": 336,
- "percentage": "69.70954356846472",
- "from": "2023-09-01 19:15:00",
- "to": "2024-08-30 13:30:00"
}, - {
- "value": "Broadcom",
- "total": 523,
- "correct": 352,
- "percentage": "67.30401529636711",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-28 18:45:00"
}, - {
- "value": "Chevron",
- "total": 500,
- "correct": 355,
- "percentage": "71.0",
- "from": "2023-08-31 14:30:00",
- "to": "2024-08-28 18:45:00"
}, - {
- "value": "Exxon Mobil",
- "total": 466,
- "correct": 335,
- "percentage": "71.88841201716738",
- "from": "2023-08-31 15:30:00",
- "to": "2024-08-28 15:00:00"
}, - {
- "value": "Google",
- "total": 530,
- "correct": 377,
- "percentage": "71.1320754716981",
- "from": "2023-08-31 16:00:00",
- "to": "2024-08-30 16:45:00"
}, - {
- "value": "Intel",
- "total": 469,
- "correct": 332,
- "percentage": "70.78891257995735",
- "from": "2023-09-01 18:30:00",
- "to": "2024-08-28 18:45:00"
}, - {
- "value": "Meta Platforms",
- "total": 542,
- "correct": 371,
- "percentage": "68.45018450184503",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-27 13:30:00"
}, - {
- "value": "Microsoft Corporation",
- "total": 526,
- "correct": 370,
- "percentage": "70.34220532319392",
- "from": "2023-08-31 14:30:00",
- "to": "2024-08-28 14:45:00"
}, - {
- "value": "Moderna",
- "total": 527,
- "correct": 360,
- "percentage": "68.3111954459203",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-29 16:45:00"
}, - {
- "value": "Netflix",
- "total": 534,
- "correct": 355,
- "percentage": "66.47940074906367",
- "from": "2023-09-01 13:30:00",
- "to": "2024-08-26 19:15:00"
}, - {
- "value": "Nike",
- "total": 483,
- "correct": 357,
- "percentage": "73.91304347826086",
- "from": "2023-09-01 13:45:00",
- "to": "2024-08-27 14:30:00"
}, - {
- "value": "Nvidia",
- "total": 466,
- "correct": 311,
- "percentage": "66.7381974248927",
- "from": "2023-08-31 16:00:00",
- "to": "2024-08-28 18:45:00"
}, - {
- "value": "Paypal",
- "total": 502,
- "correct": 368,
- "percentage": "73.30677290836654",
- "from": "2023-08-31 17:30:00",
- "to": "2024-08-28 18:45:00"
}, - {
- "value": "Pfizer",
- "total": 513,
- "correct": 360,
- "percentage": "70.17543859649122",
- "from": "2023-09-01 19:15:00",
- "to": "2024-08-29 17:30:00"
}, - {
- "value": "Tesla",
- "total": 539,
- "correct": 372,
- "percentage": "69.01669758812616",
- "from": "2023-08-31 19:30:00",
- "to": "2024-08-28 19:00:00"
}, - {
- "value": "Visa",
- "total": 543,
- "correct": 386,
- "percentage": "71.08655616942909",
- "from": "2023-08-31 18:45:00",
- "to": "2024-08-26 18:30:00"
}
]
}, - {
- "name": "significant",
- "data": [
- {
- "value": "10.0",
- "total": 3,
- "correct": 1,
- "percentage": "33.33333333333333",
- "from": "2023-09-26 15:15:00",
- "to": "2024-07-30 19:30:00"
}, - {
- "value": "3.0",
- "total": 1112,
- "correct": 839,
- "percentage": "75.44964028776978",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-29 14:30:00"
}, - {
- "value": "4.0",
- "total": 592,
- "correct": 427,
- "percentage": "72.12837837837837",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-27 14:00:00"
}, - {
- "value": "5.0",
- "total": 291,
- "correct": 208,
- "percentage": "71.47766323024055",
- "from": "2023-09-01 13:45:00",
- "to": "2024-08-27 18:00:00"
}, - {
- "value": "6.0",
- "total": 137,
- "correct": 99,
- "percentage": "72.26277372262774",
- "from": "2023-09-01 15:30:00",
- "to": "2024-08-21 19:30:00"
}, - {
- "value": "7.0",
- "total": 51,
- "correct": 33,
- "percentage": "64.70588235294117",
- "from": "2023-08-31 17:30:00",
- "to": "2024-08-15 14:30:00"
}, - {
- "value": "8.0",
- "total": 12,
- "correct": 10,
- "percentage": "83.33333333333334",
- "from": "2024-01-02 15:00:00",
- "to": "2024-07-30 13:30:00"
}, - {
- "value": "9.0",
- "total": 2,
- "correct": 2,
- "percentage": "100.0",
- "from": "2024-07-03 15:15:00",
- "to": "2024-07-17 16:15:00"
}
]
}, - {
- "name": "pattern",
- "data": [
- {
- "value": "Ascending Triangle",
- "total": 323,
- "correct": 266,
- "percentage": "82.35294117647058",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-27 17:15:00"
}, - {
- "value": "Channel Down",
- "total": 551,
- "correct": 433,
- "percentage": "78.58439201451905",
- "from": "2023-09-01 13:30:00",
- "to": "2024-08-28 18:45:00"
}, - {
- "value": "Channel Up",
- "total": 719,
- "correct": 551,
- "percentage": "76.63421418636996",
- "from": "2023-08-31 14:00:00",
- "to": "2024-08-28 14:45:00"
}, - {
- "value": "Descending Triangle",
- "total": 291,
- "correct": 210,
- "percentage": "72.16494845360825",
- "from": "2023-09-05 13:30:00",
- "to": "2024-08-29 13:30:00"
}, - {
- "value": "Double Bottom",
- "total": 14,
- "correct": 9,
- "percentage": "64.28571428571429",
- "from": "2023-12-29 14:30:00",
- "to": "2024-08-19 14:30:00"
}, - {
- "value": "Double Top",
- "total": 24,
- "correct": 17,
- "percentage": "70.83333333333334",
- "from": "2023-09-06 13:30:00",
- "to": "2024-07-11 14:15:00"
}, - {
- "value": "Falling Wedge",
- "total": 745,
- "correct": 527,
- "percentage": "70.73825503355705",
- "from": "2023-09-01 16:15:00",
- "to": "2024-08-29 14:00:00"
}, - {
- "value": "Flag",
- "total": 268,
- "correct": 186,
- "percentage": "69.40298507462687",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-30 13:30:00"
}, - {
- "value": "Head and Shoulders",
- "total": 22,
- "correct": 19,
- "percentage": "86.36363636363636",
- "from": "2023-10-25 14:30:00",
- "to": "2024-08-23 16:15:00"
}, - {
- "value": "Inverse Head and Shoulders",
- "total": 31,
- "correct": 22,
- "percentage": "70.96774193548387",
- "from": "2023-09-27 13:30:00",
- "to": "2024-08-09 17:15:00"
}, - {
- "value": "Pennant",
- "total": 505,
- "correct": 293,
- "percentage": "58.01980198019802",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-30 16:45:00"
}, - {
- "value": "Rectangle",
- "total": 32,
- "correct": 18,
- "percentage": "56.25",
- "from": "2023-09-06 13:30:00",
- "to": "2024-08-21 19:00:00"
}, - {
- "value": "Resistance",
- "total": 1190,
- "correct": 917,
- "percentage": "77.05882352941177",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-29 14:30:00"
}, - {
- "value": "Rising Wedge",
- "total": 893,
- "correct": 588,
- "percentage": "65.8454647256439",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-29 16:45:00"
}, - {
- "value": "Support",
- "total": 1010,
- "correct": 702,
- "percentage": "69.5049504950495",
- "from": "2023-08-31 16:30:00",
- "to": "2024-08-27 18:00:00"
}, - {
- "value": "Triangle",
- "total": 4036,
- "correct": 2699,
- "percentage": "66.87314172447968",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-29 17:30:00"
}
]
}, - {
- "name": "breakout",
- "data": [
- {
- "value": "0.0",
- "total": 379,
- "correct": 282,
- "percentage": "74.40633245382587",
- "from": "2023-08-31 16:00:00",
- "to": "2024-08-28 18:45:00"
}, - {
- "value": "0.1",
- "total": 807,
- "correct": 588,
- "percentage": "72.86245353159852",
- "from": "2023-08-31 16:15:00",
- "to": "2024-08-28 19:00:00"
}, - {
- "value": "0.2",
- "total": 741,
- "correct": 536,
- "percentage": "72.33468286099865",
- "from": "2023-08-31 16:00:00",
- "to": "2024-08-28 16:15:00"
}, - {
- "value": "0.3",
- "total": 603,
- "correct": 412,
- "percentage": "68.32504145936981",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-29 16:45:00"
}, - {
- "value": "0.4",
- "total": 579,
- "correct": 388,
- "percentage": "67.01208981001727",
- "from": "2023-08-31 16:00:00",
- "to": "2024-08-27 19:00:00"
}, - {
- "value": "0.5",
- "total": 491,
- "correct": 353,
- "percentage": "71.89409368635438",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-29 16:45:00"
}, - {
- "value": "0.6",
- "total": 448,
- "correct": 315,
- "percentage": "70.3125",
- "from": "2023-08-31 19:30:00",
- "to": "2024-08-26 18:30:00"
}, - {
- "value": "0.7",
- "total": 399,
- "correct": 270,
- "percentage": "67.66917293233082",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-30 16:45:00"
}, - {
- "value": "0.8",
- "total": 322,
- "correct": 208,
- "percentage": "64.59627329192547",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-29 17:30:00"
}, - {
- "value": "0.9",
- "total": 297,
- "correct": 193,
- "percentage": "64.98316498316498",
- "from": "2023-08-31 14:30:00",
- "to": "2024-08-29 13:30:00"
}, - {
- "value": "1.0",
- "total": 3388,
- "correct": 2293,
- "percentage": "67.68004722550177",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-30 13:30:00"
}
]
}, - {
- "name": "interval",
- "data": [
- {
- "value": "15",
- "total": 5908,
- "correct": 4128,
- "percentage": "69.87136086662153",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-30 16:45:00",
- "description": "15min"
}, - {
- "value": "30",
- "total": 2724,
- "correct": 1925,
- "percentage": "70.66813509544787",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-28 18:30:00",
- "description": "30min"
}, - {
- "value": "60",
- "total": 1332,
- "correct": 921,
- "percentage": "69.14414414414415",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-26 19:30:00",
- "description": "Hourly"
}, - {
- "value": "240",
- "total": 431,
- "correct": 300,
- "percentage": "69.60556844547564",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-16 13:30:00",
- "description": "4 Hourly"
}, - {
- "value": "1440",
- "total": 259,
- "correct": 183,
- "percentage": "70.65637065637065",
- "from": "2023-09-06 13:30:00",
- "to": "2024-08-01 13:30:00",
- "description": "Daily"
}
]
}, - {
- "name": "symmetry",
- "data": [
- {
- "value": "0.0",
- "total": 403,
- "correct": 290,
- "percentage": "71.96029776674938",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-29 14:00:00"
}, - {
- "value": "0.1",
- "total": 648,
- "correct": 449,
- "percentage": "69.29012345679013",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-29 14:00:00"
}, - {
- "value": "0.2",
- "total": 838,
- "correct": 589,
- "percentage": "70.28639618138425",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-30 13:30:00"
}, - {
- "value": "0.3",
- "total": 937,
- "correct": 678,
- "percentage": "72.35859124866596",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-27 19:45:00"
}, - {
- "value": "0.4",
- "total": 898,
- "correct": 632,
- "percentage": "70.37861915367483",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-29 16:45:00"
}, - {
- "value": "0.5",
- "total": 928,
- "correct": 644,
- "percentage": "69.39655172413794",
- "from": "2023-08-31 14:30:00",
- "to": "2024-08-28 18:45:00"
}, - {
- "value": "0.6",
- "total": 1027,
- "correct": 702,
- "percentage": "68.35443037974683",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-28 17:45:00"
}, - {
- "value": "0.7",
- "total": 1033,
- "correct": 695,
- "percentage": "67.27976766698936",
- "from": "2023-08-31 15:30:00",
- "to": "2024-08-28 18:45:00"
}, - {
- "value": "0.8",
- "total": 888,
- "correct": 568,
- "percentage": "63.96396396396396",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-29 17:30:00"
}, - {
- "value": "0.9",
- "total": 620,
- "correct": 441,
- "percentage": "71.12903225806451",
- "from": "2023-08-31 19:30:00",
- "to": "2024-08-30 16:45:00"
}, - {
- "value": "1.0",
- "total": 234,
- "correct": 150,
- "percentage": "64.1025641025641",
- "from": "2023-08-31 19:30:00",
- "to": "2024-08-26 15:15:00"
}
]
}, - {
- "name": "quality",
- "data": [
- {
- "value": "0.1",
- "total": 54,
- "correct": 44,
- "percentage": "81.48148148148148",
- "from": "2023-09-06 14:30:00",
- "to": "2024-08-22 14:00:00"
}, - {
- "value": "0.2",
- "total": 311,
- "correct": 244,
- "percentage": "78.45659163987139",
- "from": "2023-09-05 19:45:00",
- "to": "2024-08-27 19:00:00"
}, - {
- "value": "0.3",
- "total": 741,
- "correct": 565,
- "percentage": "76.24831309041835",
- "from": "2023-08-31 16:00:00",
- "to": "2024-08-28 15:00:00"
}, - {
- "value": "0.4",
- "total": 1435,
- "correct": 1029,
- "percentage": "71.70731707317073",
- "from": "2023-08-31 16:30:00",
- "to": "2024-08-27 19:15:00"
}, - {
- "value": "0.5",
- "total": 1986,
- "correct": 1401,
- "percentage": "70.54380664652568",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-29 16:45:00"
}, - {
- "value": "0.6",
- "total": 1865,
- "correct": 1248,
- "percentage": "66.91689008042896",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-29 17:30:00"
}, - {
- "value": "0.7",
- "total": 1295,
- "correct": 836,
- "percentage": "64.55598455598455",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-30 13:30:00"
}, - {
- "value": "0.8",
- "total": 555,
- "correct": 339,
- "percentage": "61.08108108108108",
- "from": "2023-08-31 19:30:00",
- "to": "2024-08-28 18:45:00"
}, - {
- "value": "0.9",
- "total": 193,
- "correct": 118,
- "percentage": "61.13989637305699",
- "from": "2023-09-01 14:45:00",
- "to": "2024-08-30 16:45:00"
}, - {
- "value": "1.0",
- "total": 19,
- "correct": 14,
- "percentage": "73.68421052631578",
- "from": "2023-09-08 13:30:00",
- "to": "2024-08-28 18:30:00"
}
]
}
]
}, - "emerging": {
- "category": [
- {
- "name": "direction",
- "data": [
- {
- "value": "1",
- "total": 2864,
- "correct": 2339,
- "percentage": "81.66899441340783",
- "from": "2023-08-31 17:15:00",
- "to": "2024-08-26 18:30:00"
}, - {
- "value": "-1",
- "total": 2617,
- "correct": 2062,
- "percentage": "78.79251050821551",
- "from": "2023-08-31 15:45:00",
- "to": "2024-08-27 18:15:00"
}
]
}, - {
- "name": "hourofday",
- "data": [
- {
- "value": "13",
- "total": 516,
- "correct": 410,
- "percentage": "79.45736434108527",
- "from": "2023-09-01 13:30:00",
- "to": "2024-08-23 13:45:00"
}, - {
- "value": "14",
- "total": 1040,
- "correct": 827,
- "percentage": "79.51923076923076",
- "from": "2023-09-01 14:00:00",
- "to": "2024-08-26 14:15:00"
}, - {
- "value": "15",
- "total": 818,
- "correct": 643,
- "percentage": "78.60635696821517",
- "from": "2023-08-31 15:45:00",
- "to": "2024-08-27 15:45:00"
}, - {
- "value": "16",
- "total": 689,
- "correct": 537,
- "percentage": "77.93904208998549",
- "from": "2023-08-31 16:15:00",
- "to": "2024-08-27 16:30:00"
}, - {
- "value": "17",
- "total": 679,
- "correct": 547,
- "percentage": "80.55964653902798",
- "from": "2023-08-31 17:15:00",
- "to": "2024-08-26 17:45:00"
}, - {
- "value": "18",
- "total": 626,
- "correct": 526,
- "percentage": "84.02555910543131",
- "from": "2023-08-31 18:15:00",
- "to": "2024-08-27 18:15:00"
}, - {
- "value": "19",
- "total": 819,
- "correct": 667,
- "percentage": "81.44078144078144",
- "from": "2023-08-31 19:00:00",
- "to": "2024-08-26 19:30:00"
}, - {
- "value": "20",
- "total": 294,
- "correct": 244,
- "percentage": "82.99319727891157",
- "from": "2023-11-06 20:45:00",
- "to": "2024-03-08 20:45:00"
}
]
}, - {
- "name": "interval",
- "data": [
- {
- "value": "15",
- "total": 3050,
- "correct": 2389,
- "percentage": "78.32786885245902",
- "from": "2023-08-31 15:45:00",
- "to": "2024-08-27 18:15:00",
- "description": "15min"
}, - {
- "value": "30",
- "total": 1411,
- "correct": 1181,
- "percentage": "83.69950389794471",
- "from": "2023-08-31 19:30:00",
- "to": "2024-08-23 19:00:00",
- "description": "30min"
}, - {
- "value": "60",
- "total": 764,
- "correct": 611,
- "percentage": "79.97382198952879",
- "from": "2023-09-01 14:30:00",
- "to": "2024-08-15 13:30:00",
- "description": "Hourly"
}, - {
- "value": "240",
- "total": 191,
- "correct": 166,
- "percentage": "86.91099476439791",
- "from": "2023-09-06 13:30:00",
- "to": "2024-08-07 17:30:00",
- "description": "4 Hourly"
}, - {
- "value": "1440",
- "total": 65,
- "correct": 54,
- "percentage": "83.07692307692308",
- "from": "2023-09-01 13:30:00",
- "to": "2024-06-12 13:30:00",
- "description": "Daily"
}
]
}, - {
- "name": "overall",
- "data": [
- {
- "value": "overall",
- "total": 5481,
- "correct": 4401,
- "percentage": "80.29556650246306",
- "from": "2023-08-31 15:45:00",
- "to": "2024-08-27 18:15:00"
}
]
}, - {
- "name": "pattern",
- "data": [
- {
- "value": "Resistance",
- "total": 2864,
- "correct": 2339,
- "percentage": "81.66899441340783",
- "from": "2023-08-31 17:15:00",
- "to": "2024-08-26 18:30:00"
}, - {
- "value": "Support",
- "total": 2617,
- "correct": 2062,
- "percentage": "78.79251050821551",
- "from": "2023-08-31 15:45:00",
- "to": "2024-08-27 18:15:00"
}
]
}, - {
- "name": "significant",
- "data": [
- {
- "value": "10.0",
- "total": 5,
- "correct": 5,
- "percentage": "100.0",
- "from": "2023-09-28 17:30:00",
- "to": "2024-07-30 14:30:00"
}, - {
- "value": "3.0",
- "total": 2481,
- "correct": 2004,
- "percentage": "80.7738814993954",
- "from": "2023-08-31 16:15:00",
- "to": "2024-08-27 16:30:00"
}, - {
- "value": "4.0",
- "total": 1487,
- "correct": 1190,
- "percentage": "80.02689979825152",
- "from": "2023-08-31 16:30:00",
- "to": "2024-08-27 18:15:00"
}, - {
- "value": "5.0",
- "total": 869,
- "correct": 689,
- "percentage": "79.28653624856156",
- "from": "2023-08-31 18:15:00",
- "to": "2024-08-23 19:00:00"
}, - {
- "value": "6.0",
- "total": 421,
- "correct": 333,
- "percentage": "79.09738717339667",
- "from": "2023-08-31 15:45:00",
- "to": "2024-08-23 17:30:00"
}, - {
- "value": "7.0",
- "total": 166,
- "correct": 140,
- "percentage": "84.33734939759037",
- "from": "2023-09-01 14:45:00",
- "to": "2024-08-13 16:30:00"
}, - {
- "value": "8.0",
- "total": 46,
- "correct": 34,
- "percentage": "73.91304347826086",
- "from": "2023-09-18 19:30:00",
- "to": "2024-08-02 18:30:00"
}, - {
- "value": "9.0",
- "total": 6,
- "correct": 6,
- "percentage": "100.0",
- "from": "2023-10-26 16:00:00",
- "to": "2024-02-08 15:00:00"
}
]
}, - {
- "name": "symbol",
- "data": [
- {
- "value": "Adobe Systems Incorporated",
- "total": 256,
- "correct": 207,
- "percentage": "80.859375",
- "from": "2023-09-06 14:00:00",
- "to": "2024-08-26 18:00:00"
}, - {
- "value": "Advanced Micro Devices",
- "total": 206,
- "correct": 171,
- "percentage": "83.00970873786407",
- "from": "2023-08-31 15:45:00",
- "to": "2024-08-26 14:00:00"
}, - {
- "value": "Alibaba",
- "total": 207,
- "correct": 175,
- "percentage": "84.54106280193237",
- "from": "2023-09-06 13:30:00",
- "to": "2024-08-21 17:00:00"
}, - {
- "value": "Amazon",
- "total": 271,
- "correct": 214,
- "percentage": "78.96678966789668",
- "from": "2023-09-07 18:30:00",
- "to": "2024-08-13 15:30:00"
}, - {
- "value": "Apple",
- "total": 221,
- "correct": 186,
- "percentage": "84.16289592760181",
- "from": "2023-09-12 14:15:00",
- "to": "2024-08-26 16:30:00"
}, - {
- "value": "Baidu",
- "total": 269,
- "correct": 226,
- "percentage": "84.01486988847584",
- "from": "2023-08-31 19:30:00",
- "to": "2024-08-22 13:30:00"
}, - {
- "value": "Broadcom",
- "total": 256,
- "correct": 196,
- "percentage": "76.5625",
- "from": "2023-09-01 14:30:00",
- "to": "2024-08-23 19:45:00"
}, - {
- "value": "Chevron",
- "total": 301,
- "correct": 257,
- "percentage": "85.38205980066445",
- "from": "2023-09-07 16:30:00",
- "to": "2024-08-22 17:45:00"
}, - {
- "value": "Exxon Mobil",
- "total": 218,
- "correct": 163,
- "percentage": "74.77064220183486",
- "from": "2023-09-06 14:30:00",
- "to": "2024-08-15 19:30:00"
}, - {
- "value": "Google",
- "total": 221,
- "correct": 164,
- "percentage": "74.2081447963801",
- "from": "2023-09-01 14:45:00",
- "to": "2024-08-26 15:15:00"
}, - {
- "value": "Intel",
- "total": 299,
- "correct": 219,
- "percentage": "73.24414715719062",
- "from": "2023-09-06 16:45:00",
- "to": "2024-08-27 18:15:00"
}, - {
- "value": "Meta Platforms",
- "total": 281,
- "correct": 235,
- "percentage": "83.62989323843416",
- "from": "2023-08-31 16:30:00",
- "to": "2024-08-23 14:45:00"
}, - {
- "value": "Microsoft Corporation",
- "total": 263,
- "correct": 223,
- "percentage": "84.79087452471484",
- "from": "2023-08-31 17:15:00",
- "to": "2024-08-09 16:45:00"
}, - {
- "value": "Moderna",
- "total": 270,
- "correct": 212,
- "percentage": "78.51851851851852",
- "from": "2023-08-31 16:45:00",
- "to": "2024-08-26 18:30:00"
}, - {
- "value": "Netflix",
- "total": 297,
- "correct": 229,
- "percentage": "77.10437710437711",
- "from": "2023-08-31 16:15:00",
- "to": "2024-08-26 19:30:00"
}, - {
- "value": "Nike",
- "total": 236,
- "correct": 195,
- "percentage": "82.62711864406779",
- "from": "2023-08-31 18:30:00",
- "to": "2024-08-23 18:00:00"
}, - {
- "value": "Nvidia",
- "total": 239,
- "correct": 196,
- "percentage": "82.00836820083683",
- "from": "2023-09-05 14:30:00",
- "to": "2024-08-26 14:00:00"
}, - {
- "value": "Paypal",
- "total": 257,
- "correct": 205,
- "percentage": "79.76653696498055",
- "from": "2023-09-01 15:00:00",
- "to": "2024-08-27 16:30:00"
}, - {
- "value": "Pfizer",
- "total": 278,
- "correct": 215,
- "percentage": "77.33812949640287",
- "from": "2023-09-01 14:00:00",
- "to": "2024-08-26 16:45:00"
}, - {
- "value": "Tesla",
- "total": 288,
- "correct": 231,
- "percentage": "80.20833333333334",
- "from": "2023-09-01 18:00:00",
- "to": "2024-08-23 17:30:00"
}, - {
- "value": "Visa",
- "total": 347,
- "correct": 282,
- "percentage": "81.26801152737752",
- "from": "2023-09-05 16:45:00",
- "to": "2024-08-23 19:15:00"
}
]
}
]
}, - "statsid": 602086631713108100,
- "timezoneoffset": "",
- "timezoneoffsetcount": 0
}, - {
- "name": "Cryptos",
- "breakout": {
- "category": [
- {
- "name": "symbol",
- "data": [
- {
- "value": "ADAUSD",
- "total": 3448,
- "correct": 2329,
- "percentage": "67.54640371229699",
- "from": "2023-08-31 08:00:00",
- "to": "2024-08-30 08:15:00"
}, - {
- "value": "BCHAUD",
- "total": 3320,
- "correct": 2096,
- "percentage": "63.132530120481924",
- "from": "2023-08-31 06:30:00",
- "to": "2024-08-30 06:30:00"
}, - {
- "value": "BCHBTC",
- "total": 1318,
- "correct": 986,
- "percentage": "74.81031866464339",
- "from": "2023-08-31 06:30:00",
- "to": "2024-08-29 13:30:00"
}, - {
- "value": "BCHEUR",
- "total": 3967,
- "correct": 2669,
- "percentage": "67.28006049911772",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 10:00:00"
}, - {
- "value": "BCHGBP",
- "total": 3660,
- "correct": 2442,
- "percentage": "66.72131147540983",
- "from": "2023-08-31 06:30:00",
- "to": "2024-08-30 13:30:00"
}, - {
- "value": "BCHJPY",
- "total": 3689,
- "correct": 2536,
- "percentage": "68.74491732176742",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 04:00:00"
}, - {
- "value": "BCHUSD",
- "total": 3952,
- "correct": 2648,
- "percentage": "67.00404858299595",
- "from": "2023-08-31 06:30:00",
- "to": "2024-08-30 05:30:00"
}, - {
- "value": "BTCAUD",
- "total": 3506,
- "correct": 2346,
- "percentage": "66.91386195094124",
- "from": "2023-08-31 06:45:00",
- "to": "2024-08-30 06:45:00"
}, - {
- "value": "BTCCAD",
- "total": 3222,
- "correct": 2190,
- "percentage": "67.97020484171323",
- "from": "2023-08-31 13:45:00",
- "to": "2024-08-30 07:15:00"
}, - {
- "value": "BTCEUR",
- "total": 3757,
- "correct": 2498,
- "percentage": "66.48922012243813",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 10:30:00"
}, - {
- "value": "BTCGBP",
- "total": 3484,
- "correct": 2333,
- "percentage": "66.96326061997704",
- "from": "2023-08-31 11:00:00",
- "to": "2024-08-30 06:30:00"
}, - {
- "value": "BTCJPY",
- "total": 3317,
- "correct": 2304,
- "percentage": "69.46035574314139",
- "from": "2023-08-31 08:00:00",
- "to": "2024-08-30 06:30:00"
}, - {
- "value": "BTCUSD",
- "total": 3709,
- "correct": 2506,
- "percentage": "67.56538150444864",
- "from": "2023-08-31 08:00:00",
- "to": "2024-08-30 06:30:00"
}, - {
- "value": "DASHBTC",
- "total": 1211,
- "correct": 953,
- "percentage": "78.6952931461602",
- "from": "2023-08-31 12:30:00",
- "to": "2024-08-29 09:15:00"
}, - {
- "value": "DASHETH",
- "total": 1496,
- "correct": 1130,
- "percentage": "75.53475935828877",
- "from": "2023-08-31 17:00:00",
- "to": "2024-08-29 12:30:00"
}, - {
- "value": "DASHEUR",
- "total": 3341,
- "correct": 2330,
- "percentage": "69.7395989224783",
- "from": "2023-08-31 09:00:00",
- "to": "2024-08-30 12:30:00"
}, - {
- "value": "DASHGBP",
- "total": 3692,
- "correct": 2482,
- "percentage": "67.22643553629469",
- "from": "2023-08-31 08:30:00",
- "to": "2024-08-30 01:45:00"
}, - {
- "value": "DASHUSD",
- "total": 3607,
- "correct": 2641,
- "percentage": "73.21874133629055",
- "from": "2023-08-31 08:00:00",
- "to": "2024-08-30 16:45:00"
}, - {
- "value": "ETHAUD",
- "total": 3520,
- "correct": 2383,
- "percentage": "67.69886363636364",
- "from": "2023-08-31 13:00:00",
- "to": "2024-08-30 14:15:00"
}, - {
- "value": "ETHBTC",
- "total": 1367,
- "correct": 1038,
- "percentage": "75.932699341624",
- "from": "2023-08-31 11:15:00",
- "to": "2024-08-30 05:15:00"
}, - {
- "value": "ETHCAD",
- "total": 3544,
- "correct": 2408,
- "percentage": "67.94582392776523",
- "from": "2023-08-31 15:30:00",
- "to": "2024-08-30 12:00:00"
}, - {
- "value": "ETHEUR",
- "total": 3899,
- "correct": 2709,
- "percentage": "69.47935368043088",
- "from": "2023-08-31 12:00:00",
- "to": "2024-08-30 12:15:00"
}, - {
- "value": "ETHJPY",
- "total": 3711,
- "correct": 2548,
- "percentage": "68.66073834545945",
- "from": "2023-08-31 11:00:00",
- "to": "2024-08-30 12:30:00"
}, - {
- "value": "ETHUSD",
- "total": 3692,
- "correct": 2575,
- "percentage": "69.7453954496208",
- "from": "2023-08-31 07:15:00",
- "to": "2024-08-29 18:00:00"
}, - {
- "value": "LTCAUD",
- "total": 3140,
- "correct": 2052,
- "percentage": "65.35031847133757",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 07:00:00"
}, - {
- "value": "LTCBTC",
- "total": 1357,
- "correct": 1015,
- "percentage": "74.79734708916727",
- "from": "2023-08-31 15:30:00",
- "to": "2024-08-28 15:15:00"
}, - {
- "value": "LTCEUR",
- "total": 3630,
- "correct": 2517,
- "percentage": "69.33884297520662",
- "from": "2023-08-31 06:30:00",
- "to": "2024-08-30 06:30:00"
}, - {
- "value": "LTCUSD",
- "total": 3806,
- "correct": 2669,
- "percentage": "70.12611665790857",
- "from": "2023-08-31 07:30:00",
- "to": "2024-08-30 07:00:00"
}, - {
- "value": "XRPAUD",
- "total": 3388,
- "correct": 2258,
- "percentage": "66.6469893742621",
- "from": "2023-08-31 11:00:00",
- "to": "2024-08-30 13:45:00"
}, - {
- "value": "XRPUSD",
- "total": 3574,
- "correct": 2440,
- "percentage": "68.27084499160604",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 10:15:00"
}
]
}, - {
- "name": "interval",
- "data": [
- {
- "value": "15",
- "total": 62209,
- "correct": 39036,
- "percentage": "62.74976289604398",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 17:00:00",
- "description": "15min"
}, - {
- "value": "30",
- "total": 29746,
- "correct": 19092,
- "percentage": "64.18341961944462",
- "from": "2023-08-31 06:30:00",
- "to": "2024-08-30 12:00:00",
- "description": "30min"
}, - {
- "value": "60",
- "total": 13822,
- "correct": 8865,
- "percentage": "64.13688322963391",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 07:00:00",
- "description": "Hourly"
}, - {
- "value": "240",
- "total": 2930,
- "correct": 1930,
- "percentage": "65.8703071672355",
- "from": "2023-08-31 12:00:00",
- "to": "2024-08-26 00:00:00",
- "description": "4 Hourly"
}, - {
- "value": "1440",
- "total": 321,
- "correct": 209,
- "percentage": "65.10903426791276",
- "from": "2023-09-03 00:00:00",
- "to": "2024-08-03 00:00:00",
- "description": "Daily"
}
]
}, - {
- "name": "quality",
- "data": [
- {
- "value": "0.1",
- "total": 87,
- "correct": 79,
- "percentage": "90.80459770114942",
- "from": "2023-09-02 10:15:00",
- "to": "2024-08-29 12:30:00"
}, - {
- "value": "0.2",
- "total": 1034,
- "correct": 794,
- "percentage": "76.78916827852998",
- "from": "2023-08-31 12:00:00",
- "to": "2024-08-29 11:30:00"
}, - {
- "value": "0.3",
- "total": 3714,
- "correct": 2252,
- "percentage": "60.63543349488422",
- "from": "2023-08-31 08:30:00",
- "to": "2024-08-30 05:30:00"
}, - {
- "value": "0.4",
- "total": 13630,
- "correct": 5301,
- "percentage": "38.89214966984593",
- "from": "2023-08-31 08:15:00",
- "to": "2024-08-30 17:00:00"
}, - {
- "value": "0.5",
- "total": 13678,
- "correct": 8726,
- "percentage": "63.795876590144765",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 15:15:00"
}, - {
- "value": "0.6",
- "total": 14510,
- "correct": 9313,
- "percentage": "64.18332184700208",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 12:15:00"
}, - {
- "value": "0.7",
- "total": 12602,
- "correct": 7764,
- "percentage": "61.609268370099976",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 13:45:00"
}, - {
- "value": "0.8",
- "total": 6468,
- "correct": 3933,
- "percentage": "60.80705009276438",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 10:30:00"
}, - {
- "value": "0.9",
- "total": 2331,
- "correct": 1371,
- "percentage": "58.815958815958815",
- "from": "2023-08-31 11:00:00",
- "to": "2024-08-30 06:30:00"
}, - {
- "value": "1.0",
- "total": 115,
- "correct": 68,
- "percentage": "59.130434782608695",
- "from": "2023-09-04 20:30:00",
- "to": "2024-08-24 16:00:00"
}
]
}, - {
- "name": "breakout",
- "data": [
- {
- "value": "0.0",
- "total": 11046,
- "correct": 2593,
- "percentage": "23.47456092703241",
- "from": "2023-08-31 08:00:00",
- "to": "2024-08-30 17:00:00"
}, - {
- "value": "0.1",
- "total": 6399,
- "correct": 4510,
- "percentage": "70.47976246288482",
- "from": "2023-08-31 08:00:00",
- "to": "2024-08-30 13:30:00"
}, - {
- "value": "0.2",
- "total": 5787,
- "correct": 3901,
- "percentage": "67.40971142215311",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 12:00:00"
}, - {
- "value": "0.3",
- "total": 5234,
- "correct": 3553,
- "percentage": "67.88307222009935",
- "from": "2023-08-31 08:45:00",
- "to": "2024-08-30 05:30:00"
}, - {
- "value": "0.4",
- "total": 4453,
- "correct": 2891,
- "percentage": "64.92252414102852",
- "from": "2023-08-31 08:00:00",
- "to": "2024-08-30 10:30:00"
}, - {
- "value": "0.5",
- "total": 4070,
- "correct": 2662,
- "percentage": "65.4054054054054",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-29 09:45:00"
}, - {
- "value": "0.6",
- "total": 3521,
- "correct": 2264,
- "percentage": "64.29991479693268",
- "from": "2023-08-31 08:00:00",
- "to": "2024-08-30 10:30:00"
}, - {
- "value": "0.7",
- "total": 3196,
- "correct": 1975,
- "percentage": "61.79599499374218",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 10:30:00"
}, - {
- "value": "0.8",
- "total": 2802,
- "correct": 1697,
- "percentage": "60.5638829407566",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 06:45:00"
}, - {
- "value": "0.9",
- "total": 2372,
- "correct": 1401,
- "percentage": "59.06408094435076",
- "from": "2023-08-31 12:30:00",
- "to": "2024-08-30 06:30:00"
}, - {
- "value": "1.0",
- "total": 19289,
- "correct": 12154,
- "percentage": "63.01000570273213",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 13:45:00"
}
]
}, - {
- "name": "overall",
- "data": [
- {
- "value": "overall",
- "total": 109028,
- "correct": 69132,
- "percentage": "63.407565029166825",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 17:00:00"
}
]
}, - {
- "name": "pattern",
- "data": [
- {
- "value": "Ascending Triangle",
- "total": 3085,
- "correct": 1883,
- "percentage": "61.03727714748784",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 11:00:00"
}, - {
- "value": "Channel Down",
- "total": 4161,
- "correct": 3000,
- "percentage": "72.09805335255948",
- "from": "2023-09-01 09:00:00",
- "to": "2024-08-30 07:15:00"
}, - {
- "value": "Channel Up",
- "total": 4371,
- "correct": 3217,
- "percentage": "73.59871882864333",
- "from": "2023-08-31 12:00:00",
- "to": "2024-08-30 13:45:00"
}, - {
- "value": "Descending Triangle",
- "total": 5153,
- "correct": 1463,
- "percentage": "28.391228410634582",
- "from": "2023-08-31 08:45:00",
- "to": "2024-08-29 17:00:00"
}, - {
- "value": "Double Bottom",
- "total": 149,
- "correct": 120,
- "percentage": "80.53691275167785",
- "from": "2023-09-05 09:30:00",
- "to": "2024-08-21 19:00:00"
}, - {
- "value": "Double Top",
- "total": 164,
- "correct": 133,
- "percentage": "81.09756097560977",
- "from": "2023-08-31 16:45:00",
- "to": "2024-08-24 21:45:00"
}, - {
- "value": "Falling Wedge",
- "total": 4565,
- "correct": 3004,
- "percentage": "65.80503833515881",
- "from": "2023-08-31 11:00:00",
- "to": "2024-08-30 06:30:00"
}, - {
- "value": "Flag",
- "total": 2170,
- "correct": 1468,
- "percentage": "67.64976958525347",
- "from": "2023-08-31 12:30:00",
- "to": "2024-08-30 12:15:00"
}, - {
- "value": "Head and Shoulders",
- "total": 341,
- "correct": 286,
- "percentage": "83.87096774193549",
- "from": "2023-09-04 11:15:00",
- "to": "2024-08-26 13:30:00"
}, - {
- "value": "Inverse Head and Shoulders",
- "total": 272,
- "correct": 225,
- "percentage": "82.72058823529412",
- "from": "2023-09-02 04:00:00",
- "to": "2024-08-25 21:00:00"
}, - {
- "value": "Pennant",
- "total": 2964,
- "correct": 1611,
- "percentage": "54.35222672064778",
- "from": "2023-08-31 08:00:00",
- "to": "2024-08-30 05:15:00"
}, - {
- "value": "Rectangle",
- "total": 4307,
- "correct": 263,
- "percentage": "6.106338518690504",
- "from": "2023-08-31 08:30:00",
- "to": "2024-08-30 17:00:00"
}, - {
- "value": "Resistance",
- "total": 21487,
- "correct": 15336,
- "percentage": "71.37338856052496",
- "from": "2023-08-31 06:30:00",
- "to": "2024-08-30 16:45:00"
}, - {
- "value": "Rising Wedge",
- "total": 5178,
- "correct": 3335,
- "percentage": "64.40710699111627",
- "from": "2023-08-31 12:30:00",
- "to": "2024-08-30 13:30:00"
}, - {
- "value": "Support",
- "total": 19372,
- "correct": 14195,
- "percentage": "73.27586206896551",
- "from": "2023-08-31 08:30:00",
- "to": "2024-08-30 14:15:00"
}, - {
- "value": "Triangle",
- "total": 31289,
- "correct": 19593,
- "percentage": "62.61945092524529",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 10:30:00"
}
]
}, - {
- "name": "clarity",
- "data": [
- {
- "value": "0.0",
- "total": 4726,
- "correct": 3131,
- "percentage": "66.25052898857385",
- "from": "2023-08-31 08:30:00",
- "to": "2024-08-30 01:45:00"
}, - {
- "value": "0.1",
- "total": 1315,
- "correct": 913,
- "percentage": "69.4296577946768",
- "from": "2023-09-01 02:00:00",
- "to": "2024-08-30 08:15:00"
}, - {
- "value": "0.2",
- "total": 1739,
- "correct": 1177,
- "percentage": "67.68257619321449",
- "from": "2023-08-31 16:45:00",
- "to": "2024-08-30 06:30:00"
}, - {
- "value": "0.3",
- "total": 2331,
- "correct": 1600,
- "percentage": "68.64006864006865",
- "from": "2023-08-31 13:00:00",
- "to": "2024-08-30 07:00:00"
}, - {
- "value": "0.4",
- "total": 3314,
- "correct": 2214,
- "percentage": "66.8074834037417",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 00:30:00"
}, - {
- "value": "0.5",
- "total": 4589,
- "correct": 3011,
- "percentage": "65.61342340379167",
- "from": "2023-08-31 13:30:00",
- "to": "2024-08-30 05:30:00"
}, - {
- "value": "0.6",
- "total": 6116,
- "correct": 3945,
- "percentage": "64.50294310006541",
- "from": "2023-08-31 08:00:00",
- "to": "2024-08-30 08:00:00"
}, - {
- "value": "0.7",
- "total": 8514,
- "correct": 5512,
- "percentage": "64.7404275311252",
- "from": "2023-08-31 08:30:00",
- "to": "2024-08-30 07:15:00"
}, - {
- "value": "0.8",
- "total": 10936,
- "correct": 6994,
- "percentage": "63.95391367959034",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 13:45:00"
}, - {
- "value": "0.9",
- "total": 12435,
- "correct": 7813,
- "percentage": "62.83071974266184",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 10:30:00"
}, - {
- "value": "1.0",
- "total": 12154,
- "correct": 3291,
- "percentage": "27.07750534803357",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 17:00:00"
}
]
}, - {
- "name": "hourofday",
- "data": [
- {
- "value": "0",
- "total": 5410,
- "correct": 3236,
- "percentage": "59.81515711645101",
- "from": "2023-09-01 00:00:00",
- "to": "2024-08-30 00:30:00"
}, - {
- "value": "1",
- "total": 5268,
- "correct": 2929,
- "percentage": "55.59984813971146",
- "from": "2023-09-01 01:00:00",
- "to": "2024-08-30 01:45:00"
}, - {
- "value": "10",
- "total": 4331,
- "correct": 2938,
- "percentage": "67.83652736088663",
- "from": "2023-08-31 10:30:00",
- "to": "2024-08-30 10:30:00"
}, - {
- "value": "11",
- "total": 4267,
- "correct": 2898,
- "percentage": "67.91656901804546",
- "from": "2023-08-31 11:00:00",
- "to": "2024-08-30 11:15:00"
}, - {
- "value": "12",
- "total": 5252,
- "correct": 3654,
- "percentage": "69.57349581111959",
- "from": "2023-08-31 12:00:00",
- "to": "2024-08-30 12:30:00"
}, - {
- "value": "13",
- "total": 5480,
- "correct": 3655,
- "percentage": "66.6970802919708",
- "from": "2023-08-31 13:00:00",
- "to": "2024-08-30 13:45:00"
}, - {
- "value": "14",
- "total": 5762,
- "correct": 3887,
- "percentage": "67.45921555015619",
- "from": "2023-08-31 14:00:00",
- "to": "2024-08-30 14:15:00"
}, - {
- "value": "15",
- "total": 5028,
- "correct": 3443,
- "percentage": "68.47653142402545",
- "from": "2023-08-31 15:00:00",
- "to": "2024-08-30 15:15:00"
}, - {
- "value": "16",
- "total": 4793,
- "correct": 3078,
- "percentage": "64.21865220112664",
- "from": "2023-08-31 16:00:00",
- "to": "2024-08-30 16:45:00"
}, - {
- "value": "17",
- "total": 4236,
- "correct": 2482,
- "percentage": "58.59301227573182",
- "from": "2023-08-31 17:00:00",
- "to": "2024-08-30 17:00:00"
}, - {
- "value": "18",
- "total": 3810,
- "correct": 2282,
- "percentage": "59.895013123359576",
- "from": "2023-09-01 18:30:00",
- "to": "2024-08-29 18:45:00"
}, - {
- "value": "19",
- "total": 3528,
- "correct": 2109,
- "percentage": "59.778911564625844",
- "from": "2023-08-31 19:00:00",
- "to": "2024-08-28 19:45:00"
}, - {
- "value": "2",
- "total": 4260,
- "correct": 2606,
- "percentage": "61.1737089201878",
- "from": "2023-09-01 02:00:00",
- "to": "2024-08-30 02:45:00"
}, - {
- "value": "20",
- "total": 4517,
- "correct": 2610,
- "percentage": "57.781713526677",
- "from": "2023-08-31 20:00:00",
- "to": "2024-08-28 20:45:00"
}, - {
- "value": "21",
- "total": 4218,
- "correct": 2369,
- "percentage": "56.164058795637736",
- "from": "2023-08-31 21:30:00",
- "to": "2024-08-29 21:00:00"
}, - {
- "value": "22",
- "total": 4040,
- "correct": 2433,
- "percentage": "60.22277227722772",
- "from": "2023-08-31 22:15:00",
- "to": "2024-08-29 22:30:00"
}, - {
- "value": "23",
- "total": 3928,
- "correct": 2251,
- "percentage": "57.306517311608964",
- "from": "2023-08-31 23:00:00",
- "to": "2024-08-29 23:00:00"
}, - {
- "value": "3",
- "total": 3516,
- "correct": 2137,
- "percentage": "60.779294653014794",
- "from": "2023-09-01 03:00:00",
- "to": "2024-08-30 03:30:00"
}, - {
- "value": "4",
- "total": 4168,
- "correct": 2566,
- "percentage": "61.56429942418426",
- "from": "2023-09-01 04:00:00",
- "to": "2024-08-30 04:30:00"
}, - {
- "value": "5",
- "total": 3849,
- "correct": 2579,
- "percentage": "67.0044167316186",
- "from": "2023-09-01 05:00:00",
- "to": "2024-08-30 05:30:00"
}, - {
- "value": "6",
- "total": 4338,
- "correct": 2807,
- "percentage": "64.70723835869065",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 06:45:00"
}, - {
- "value": "7",
- "total": 5043,
- "correct": 3353,
- "percentage": "66.48820146738052",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 07:15:00"
}, - {
- "value": "8",
- "total": 5157,
- "correct": 3486,
- "percentage": "67.59744037230948",
- "from": "2023-08-31 08:00:00",
- "to": "2024-08-30 08:45:00"
}, - {
- "value": "9",
- "total": 4829,
- "correct": 3344,
- "percentage": "69.24829157175398",
- "from": "2023-08-31 09:00:00",
- "to": "2024-08-29 09:45:00"
}
]
}, - {
- "name": "significant",
- "data": [
- {
- "value": "10.0",
- "total": 371,
- "correct": 43,
- "percentage": "11.590296495956872",
- "from": "2023-09-06 17:00:00",
- "to": "2024-08-23 22:15:00"
}, - {
- "value": "3.0",
- "total": 16558,
- "correct": 12384,
- "percentage": "74.79164150259693",
- "from": "2023-08-31 06:30:00",
- "to": "2024-08-30 16:45:00"
}, - {
- "value": "4.0",
- "total": 11542,
- "correct": 8513,
- "percentage": "73.75671460752035",
- "from": "2023-08-31 06:30:00",
- "to": "2024-08-30 14:15:00"
}, - {
- "value": "5.0",
- "total": 6887,
- "correct": 4963,
- "percentage": "72.06330768113838",
- "from": "2023-08-31 06:30:00",
- "to": "2024-08-29 09:00:00"
}, - {
- "value": "6.0",
- "total": 3487,
- "correct": 2448,
- "percentage": "70.20361342127903",
- "from": "2023-08-31 06:30:00",
- "to": "2024-08-29 18:45:00"
}, - {
- "value": "7.0",
- "total": 1367,
- "correct": 876,
- "percentage": "64.08193123628382",
- "from": "2023-08-31 13:45:00",
- "to": "2024-08-29 17:15:00"
}, - {
- "value": "8.0",
- "total": 466,
- "correct": 253,
- "percentage": "54.29184549356223",
- "from": "2023-09-01 01:00:00",
- "to": "2024-08-20 14:00:00"
}, - {
- "value": "9.0",
- "total": 181,
- "correct": 51,
- "percentage": "28.176795580110497",
- "from": "2023-09-03 00:30:00",
- "to": "2024-08-23 17:30:00"
}
]
}, - {
- "name": "direction",
- "data": [
- {
- "value": "1",
- "total": 53649,
- "correct": 36131,
- "percentage": "67.34701485582211",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 17:00:00"
}, - {
- "value": "-1",
- "total": 55379,
- "correct": 33001,
- "percentage": "59.59118077249499",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 15:15:00"
}
]
}, - {
- "name": "initialtrend",
- "data": [
- {
- "value": "0.0",
- "total": 955,
- "correct": 692,
- "percentage": "72.4607329842932",
- "from": "2023-09-02 09:15:00",
- "to": "2024-08-29 23:00:00"
}, - {
- "value": "0.1",
- "total": 6762,
- "correct": 4568,
- "percentage": "67.55397811298432",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 08:00:00"
}, - {
- "value": "0.2",
- "total": 10395,
- "correct": 6689,
- "percentage": "64.34824434824435",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 13:45:00"
}, - {
- "value": "0.3",
- "total": 10273,
- "correct": 6262,
- "percentage": "60.95590382556215",
- "from": "2023-08-31 08:45:00",
- "to": "2024-08-30 17:00:00"
}, - {
- "value": "0.4",
- "total": 10312,
- "correct": 5093,
- "percentage": "49.38906128782001",
- "from": "2023-08-31 08:30:00",
- "to": "2024-08-30 11:00:00"
}, - {
- "value": "0.5",
- "total": 9746,
- "correct": 3881,
- "percentage": "39.82146521649908",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 15:15:00"
}, - {
- "value": "0.6",
- "total": 4709,
- "correct": 2939,
- "percentage": "62.41240178381822",
- "from": "2023-08-31 08:30:00",
- "to": "2024-08-30 13:30:00"
}, - {
- "value": "0.7",
- "total": 3626,
- "correct": 2378,
- "percentage": "65.58190843905129",
- "from": "2023-08-31 08:00:00",
- "to": "2024-08-30 07:00:00"
}, - {
- "value": "0.8",
- "total": 2766,
- "correct": 1728,
- "percentage": "62.47288503253796",
- "from": "2023-08-31 11:00:00",
- "to": "2024-08-30 12:00:00"
}, - {
- "value": "0.9",
- "total": 2070,
- "correct": 1264,
- "percentage": "61.06280193236715",
- "from": "2023-08-31 11:00:00",
- "to": "2024-08-30 12:15:00"
}, - {
- "value": "1.0",
- "total": 6555,
- "correct": 4107,
- "percentage": "62.65446224256293",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 06:45:00"
}
]
}, - {
- "name": "symmetry",
- "data": [
- {
- "value": "0.0",
- "total": 788,
- "correct": 10,
- "percentage": "1.2690355329949239",
- "from": "2023-08-31 16:45:00",
- "to": "2024-08-28 10:30:00"
}, - {
- "value": "0.1",
- "total": 3373,
- "correct": 132,
- "percentage": "3.91343018084791",
- "from": "2023-09-01 03:15:00",
- "to": "2024-08-30 08:45:00"
}, - {
- "value": "0.2",
- "total": 2520,
- "correct": 506,
- "percentage": "20.07936507936508",
- "from": "2023-08-31 10:30:00",
- "to": "2024-08-30 11:00:00"
}, - {
- "value": "0.3",
- "total": 2946,
- "correct": 1474,
- "percentage": "50.033944331296674",
- "from": "2023-08-31 12:30:00",
- "to": "2024-08-30 07:00:00"
}, - {
- "value": "0.4",
- "total": 4892,
- "correct": 3253,
- "percentage": "66.49632052330335",
- "from": "2023-08-31 08:00:00",
- "to": "2024-08-30 17:00:00"
}, - {
- "value": "0.5",
- "total": 7980,
- "correct": 5478,
- "percentage": "68.64661654135338",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 13:30:00"
}, - {
- "value": "0.6",
- "total": 11421,
- "correct": 7494,
- "percentage": "65.61597058050958",
- "from": "2023-08-31 08:00:00",
- "to": "2024-08-30 07:00:00"
}, - {
- "value": "0.7",
- "total": 13525,
- "correct": 8633,
- "percentage": "63.82994454713493",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 15:15:00"
}, - {
- "value": "0.8",
- "total": 12197,
- "correct": 7544,
- "percentage": "61.85127490366483",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 10:30:00"
}, - {
- "value": "0.9",
- "total": 7502,
- "correct": 4492,
- "percentage": "59.87736603572381",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 06:30:00"
}, - {
- "value": "1.0",
- "total": 1025,
- "correct": 585,
- "percentage": "57.073170731707314",
- "from": "2023-08-31 08:00:00",
- "to": "2024-08-30 06:45:00"
}
]
}
]
}, - "emerging": {
- "category": [
- {
- "name": "direction",
- "data": [
- {
- "value": "1",
- "total": 55807,
- "correct": 43720,
- "percentage": "78.34142670274339",
- "from": "2023-08-31 06:30:00",
- "to": "2024-08-30 16:30:00"
}, - {
- "value": "-1",
- "total": 51153,
- "correct": 40192,
- "percentage": "78.57212675698395",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 11:00:00"
}
]
}, - {
- "name": "hourofday",
- "data": [
- {
- "value": "0",
- "total": 5092,
- "correct": 4045,
- "percentage": "79.43833464257659",
- "from": "2023-09-01 00:00:00",
- "to": "2024-08-29 00:45:00"
}, - {
- "value": "1",
- "total": 4824,
- "correct": 3842,
- "percentage": "79.64344941956882",
- "from": "2023-09-02 01:30:00",
- "to": "2024-08-30 01:15:00"
}, - {
- "value": "10",
- "total": 4144,
- "correct": 3324,
- "percentage": "80.21235521235522",
- "from": "2023-08-31 10:00:00",
- "to": "2024-08-30 10:45:00"
}, - {
- "value": "11",
- "total": 4376,
- "correct": 3542,
- "percentage": "80.94149908592321",
- "from": "2023-08-31 11:00:00",
- "to": "2024-08-30 11:00:00"
}, - {
- "value": "12",
- "total": 4899,
- "correct": 3869,
- "percentage": "78.97530108185344",
- "from": "2023-08-31 12:00:00",
- "to": "2024-08-30 12:15:00"
}, - {
- "value": "13",
- "total": 5119,
- "correct": 3971,
- "percentage": "77.57374487204532",
- "from": "2023-08-31 13:00:00",
- "to": "2024-08-29 13:00:00"
}, - {
- "value": "14",
- "total": 5669,
- "correct": 4401,
- "percentage": "77.63273946022227",
- "from": "2023-08-31 14:00:00",
- "to": "2024-08-29 14:00:00"
}, - {
- "value": "15",
- "total": 4875,
- "correct": 3739,
- "percentage": "76.6974358974359",
- "from": "2023-08-31 15:00:00",
- "to": "2024-08-29 15:15:00"
}, - {
- "value": "16",
- "total": 4869,
- "correct": 3784,
- "percentage": "77.71616348326145",
- "from": "2023-08-31 16:00:00",
- "to": "2024-08-30 16:30:00"
}, - {
- "value": "17",
- "total": 4704,
- "correct": 3572,
- "percentage": "75.93537414965986",
- "from": "2023-08-31 17:00:00",
- "to": "2024-08-29 17:30:00"
}, - {
- "value": "18",
- "total": 4245,
- "correct": 3180,
- "percentage": "74.91166077738515",
- "from": "2023-08-31 18:00:00",
- "to": "2024-08-29 18:30:00"
}, - {
- "value": "19",
- "total": 3827,
- "correct": 2914,
- "percentage": "76.1431931016462",
- "from": "2023-08-31 19:00:00",
- "to": "2024-08-29 19:00:00"
}, - {
- "value": "2",
- "total": 4314,
- "correct": 3428,
- "percentage": "79.4622160407974",
- "from": "2023-09-01 02:00:00",
- "to": "2024-08-30 02:15:00"
}, - {
- "value": "20",
- "total": 4156,
- "correct": 3169,
- "percentage": "76.2512030798845",
- "from": "2023-08-31 20:00:00",
- "to": "2024-08-28 20:45:00"
}, - {
- "value": "21",
- "total": 4046,
- "correct": 3109,
- "percentage": "76.8413247652002",
- "from": "2023-09-01 21:00:00",
- "to": "2024-08-28 21:45:00"
}, - {
- "value": "22",
- "total": 4045,
- "correct": 3025,
- "percentage": "74.78368355995056",
- "from": "2023-08-31 22:15:00",
- "to": "2024-08-29 22:45:00"
}, - {
- "value": "23",
- "total": 3931,
- "correct": 2960,
- "percentage": "75.29890613075553",
- "from": "2023-08-31 23:30:00",
- "to": "2024-08-29 23:00:00"
}, - {
- "value": "3",
- "total": 3812,
- "correct": 3039,
- "percentage": "79.72193074501574",
- "from": "2023-09-01 03:00:00",
- "to": "2024-08-29 03:45:00"
}, - {
- "value": "4",
- "total": 4085,
- "correct": 3368,
- "percentage": "82.44798041615667",
- "from": "2023-09-01 04:15:00",
- "to": "2024-08-30 04:30:00"
}, - {
- "value": "5",
- "total": 4102,
- "correct": 3284,
- "percentage": "80.05850804485617",
- "from": "2023-09-01 05:30:00",
- "to": "2024-08-29 05:45:00"
}, - {
- "value": "6",
- "total": 4254,
- "correct": 3314,
- "percentage": "77.90314997649271",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 06:45:00"
}, - {
- "value": "7",
- "total": 4643,
- "correct": 3712,
- "percentage": "79.9483092827913",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 07:45:00"
}, - {
- "value": "8",
- "total": 4569,
- "correct": 3822,
- "percentage": "83.65068942875902",
- "from": "2023-08-31 08:00:00",
- "to": "2024-08-30 08:45:00"
}, - {
- "value": "9",
- "total": 4360,
- "correct": 3499,
- "percentage": "80.25229357798165",
- "from": "2023-08-31 09:00:00",
- "to": "2024-08-29 09:45:00"
}
]
}, - {
- "name": "interval",
- "data": [
- {
- "value": "15",
- "total": 62513,
- "correct": 48611,
- "percentage": "77.76142562347032",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 16:30:00",
- "description": "15min"
}, - {
- "value": "30",
- "total": 28927,
- "correct": 22802,
- "percentage": "78.82601030179417",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 01:00:00",
- "description": "30min"
}, - {
- "value": "60",
- "total": 13147,
- "correct": 10525,
- "percentage": "80.0562866053092",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-27 21:00:00",
- "description": "Hourly"
}, - {
- "value": "240",
- "total": 2247,
- "correct": 1893,
- "percentage": "84.2456608811749",
- "from": "2023-08-31 12:00:00",
- "to": "2024-08-23 04:00:00",
- "description": "4 Hourly"
}, - {
- "value": "1440",
- "total": 126,
- "correct": 81,
- "percentage": "64.28571428571429",
- "from": "2023-09-01 00:00:00",
- "to": "2024-07-27 00:00:00",
- "description": "Daily"
}
]
}, - {
- "name": "overall",
- "data": [
- {
- "value": "overall",
- "total": 106960,
- "correct": 83912,
- "percentage": "78.45175766641735",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 16:30:00"
}
]
}, - {
- "name": "pattern",
- "data": [
- {
- "value": "Resistance",
- "total": 55807,
- "correct": 43720,
- "percentage": "78.34142670274339",
- "from": "2023-08-31 06:30:00",
- "to": "2024-08-30 16:30:00"
}, - {
- "value": "Support",
- "total": 51153,
- "correct": 40192,
- "percentage": "78.57212675698395",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 11:00:00"
}
]
}, - {
- "name": "significant",
- "data": [
- {
- "value": "10.0",
- "total": 168,
- "correct": 73,
- "percentage": "43.452380952380956",
- "from": "2023-09-02 10:30:00",
- "to": "2024-08-04 10:45:00"
}, - {
- "value": "3.0",
- "total": 38935,
- "correct": 30733,
- "percentage": "78.93412097084885",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 16:30:00"
}, - {
- "value": "4.0",
- "total": 31443,
- "correct": 24539,
- "percentage": "78.04280762013803",
- "from": "2023-08-31 06:30:00",
- "to": "2024-08-30 02:15:00"
}, - {
- "value": "5.0",
- "total": 20182,
- "correct": 15910,
- "percentage": "78.83262312952135",
- "from": "2023-08-31 06:30:00",
- "to": "2024-08-30 04:00:00"
}, - {
- "value": "6.0",
- "total": 10782,
- "correct": 8423,
- "percentage": "78.12094231125951",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 10:45:00"
}, - {
- "value": "7.0",
- "total": 4064,
- "correct": 3218,
- "percentage": "79.18307086614173",
- "from": "2023-08-31 07:15:00",
- "to": "2024-08-29 05:45:00"
}, - {
- "value": "8.0",
- "total": 1114,
- "correct": 846,
- "percentage": "75.94254937163375",
- "from": "2023-08-31 16:00:00",
- "to": "2024-08-26 18:45:00"
}, - {
- "value": "9.0",
- "total": 272,
- "correct": 170,
- "percentage": "62.5",
- "from": "2023-08-31 10:30:00",
- "to": "2024-08-15 17:00:00"
}
]
}, - {
- "name": "symbol",
- "data": [
- {
- "value": "ADAUSD",
- "total": 3169,
- "correct": 2547,
- "percentage": "80.37235721047648",
- "from": "2023-08-31 09:30:00",
- "to": "2024-08-29 05:45:00"
}, - {
- "value": "BCHAUD",
- "total": 3846,
- "correct": 2754,
- "percentage": "71.60686427457098",
- "from": "2023-08-31 06:30:00",
- "to": "2024-08-30 10:45:00"
}, - {
- "value": "BCHBTC",
- "total": 3478,
- "correct": 2811,
- "percentage": "80.82231167337551",
- "from": "2023-08-31 13:15:00",
- "to": "2024-08-29 09:30:00"
}, - {
- "value": "BCHEUR",
- "total": 3266,
- "correct": 2599,
- "percentage": "79.5774647887324",
- "from": "2023-08-31 06:30:00",
- "to": "2024-08-29 09:15:00"
}, - {
- "value": "BCHGBP",
- "total": 3404,
- "correct": 2628,
- "percentage": "77.2032902467685",
- "from": "2023-08-31 13:15:00",
- "to": "2024-08-29 05:45:00"
}, - {
- "value": "BCHJPY",
- "total": 3551,
- "correct": 2803,
- "percentage": "78.93551112362715",
- "from": "2023-08-31 09:15:00",
- "to": "2024-08-29 02:00:00"
}, - {
- "value": "BCHUSD",
- "total": 3232,
- "correct": 2637,
- "percentage": "81.59034653465346",
- "from": "2023-08-31 09:15:00",
- "to": "2024-08-29 06:00:00"
}, - {
- "value": "BTCAUD",
- "total": 3146,
- "correct": 2454,
- "percentage": "78.00381436745073",
- "from": "2023-08-31 09:45:00",
- "to": "2024-08-29 10:00:00"
}, - {
- "value": "BTCCAD",
- "total": 3235,
- "correct": 2535,
- "percentage": "78.36166924265842",
- "from": "2023-08-31 09:15:00",
- "to": "2024-08-29 22:45:00"
}, - {
- "value": "BTCEUR",
- "total": 3166,
- "correct": 2456,
- "percentage": "77.57422615287429",
- "from": "2023-08-31 06:30:00",
- "to": "2024-08-30 01:15:00"
}, - {
- "value": "BTCGBP",
- "total": 3232,
- "correct": 2534,
- "percentage": "78.40346534653465",
- "from": "2023-08-31 10:45:00",
- "to": "2024-08-29 04:00:00"
}, - {
- "value": "BTCJPY",
- "total": 3015,
- "correct": 2305,
- "percentage": "76.45107794361525",
- "from": "2023-08-31 06:30:00",
- "to": "2024-08-29 09:00:00"
}, - {
- "value": "BTCUSD",
- "total": 3087,
- "correct": 2374,
- "percentage": "76.90314220926466",
- "from": "2023-08-31 09:00:00",
- "to": "2024-08-29 05:45:00"
}, - {
- "value": "DASHBTC",
- "total": 3648,
- "correct": 2900,
- "percentage": "79.49561403508771",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-29 08:15:00"
}, - {
- "value": "DASHETH",
- "total": 3753,
- "correct": 2970,
- "percentage": "79.13669064748201",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-29 10:45:00"
}, - {
- "value": "DASHEUR",
- "total": 3617,
- "correct": 2832,
- "percentage": "78.29693115841859",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 12:15:00"
}, - {
- "value": "DASHGBP",
- "total": 3974,
- "correct": 3096,
- "percentage": "77.90639154504278",
- "from": "2023-08-31 07:30:00",
- "to": "2024-08-30 12:15:00"
}, - {
- "value": "DASHUSD",
- "total": 3704,
- "correct": 3011,
- "percentage": "81.29049676025917",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-29 17:00:00"
}, - {
- "value": "ETHAUD",
- "total": 3024,
- "correct": 2377,
- "percentage": "78.60449735449735",
- "from": "2023-08-31 15:15:00",
- "to": "2024-08-29 23:00:00"
}, - {
- "value": "ETHBTC",
- "total": 3084,
- "correct": 2349,
- "percentage": "76.16731517509727",
- "from": "2023-08-31 08:00:00",
- "to": "2024-08-30 04:00:00"
}, - {
- "value": "ETHCAD",
- "total": 3259,
- "correct": 2502,
- "percentage": "76.77201595581467",
- "from": "2023-08-31 08:15:00",
- "to": "2024-08-29 18:15:00"
}, - {
- "value": "ETHEUR",
- "total": 3078,
- "correct": 2462,
- "percentage": "79.98700454840805",
- "from": "2023-08-31 14:00:00",
- "to": "2024-08-29 18:15:00"
}, - {
- "value": "ETHJPY",
- "total": 2958,
- "correct": 2303,
- "percentage": "77.85665990534144",
- "from": "2023-08-31 08:45:00",
- "to": "2024-08-30 12:00:00"
}, - {
- "value": "ETHUSD",
- "total": 3108,
- "correct": 2509,
- "percentage": "80.72715572715573",
- "from": "2023-08-31 11:00:00",
- "to": "2024-08-30 11:00:00"
}, - {
- "value": "LTCAUD",
- "total": 3749,
- "correct": 3035,
- "percentage": "80.95492131234995",
- "from": "2023-08-31 09:15:00",
- "to": "2024-08-29 18:30:00"
}, - {
- "value": "LTCBTC",
- "total": 3363,
- "correct": 2650,
- "percentage": "78.79869164436515",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-28 18:00:00"
}, - {
- "value": "LTCEUR",
- "total": 3265,
- "correct": 2593,
- "percentage": "79.41807044410413",
- "from": "2023-08-31 11:15:00",
- "to": "2024-08-28 20:30:00"
}, - {
- "value": "LTCUSD",
- "total": 3371,
- "correct": 2685,
- "percentage": "79.64995550281816",
- "from": "2023-08-31 06:30:00",
- "to": "2024-08-30 02:15:00"
}, - {
- "value": "XRPAUD",
- "total": 3561,
- "correct": 2796,
- "percentage": "78.5172704296546",
- "from": "2023-08-31 08:00:00",
- "to": "2024-08-30 07:15:00"
}, - {
- "value": "XRPUSD",
- "total": 3628,
- "correct": 2919,
- "percentage": "80.45755237045204",
- "from": "2023-08-31 11:00:00",
- "to": "2024-08-30 10:15:00"
}
]
}
]
}, - "statsid": 603355086236315100,
- "timezoneoffset": "",
- "timezoneoffsetcount": 0
}, - {
- "name": "Market Overview",
- "breakout": {
- "category": [
- {
- "name": "symbol",
- "data": [
- {
- "value": "Brent Crude",
- "total": 2140,
- "correct": 1545,
- "percentage": "72.19626168224299",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 01:15:00"
}, - {
- "value": "BTCUSD",
- "total": 3709,
- "correct": 2506,
- "percentage": "67.56538150444864",
- "from": "2023-08-31 08:00:00",
- "to": "2024-08-30 06:30:00"
}, - {
- "value": "ETHUSD",
- "total": 3692,
- "correct": 2575,
- "percentage": "69.7453954496208",
- "from": "2023-08-31 07:15:00",
- "to": "2024-08-29 18:00:00"
}, - {
- "value": "EURUSD",
- "total": 1401,
- "correct": 1006,
- "percentage": "71.80585296216988",
- "from": "2023-08-31 15:00:00",
- "to": "2024-08-29 15:30:00"
}, - {
- "value": "FTSE 100",
- "total": 1142,
- "correct": 824,
- "percentage": "72.15411558669001",
- "from": "2023-08-31 11:30:00",
- "to": "2024-08-30 12:45:00"
}, - {
- "value": "Gold Spot",
- "total": 2263,
- "correct": 1597,
- "percentage": "70.57003977021652",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-29 12:30:00"
}, - {
- "value": "US 500",
- "total": 2014,
- "correct": 1498,
- "percentage": "74.37934458788482",
- "from": "2023-08-31 11:30:00",
- "to": "2024-08-30 07:30:00"
}, - {
- "value": "US Crude Oil",
- "total": 2185,
- "correct": 1575,
- "percentage": "72.08237986270024",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 00:15:00"
}, - {
- "value": "USDJPY",
- "total": 2197,
- "correct": 1558,
- "percentage": "70.9148839326354",
- "from": "2023-08-31 06:45:00",
- "to": "2024-08-30 08:45:00"
}
]
}, - {
- "name": "initialtrend",
- "data": [
- {
- "value": "0.0",
- "total": 212,
- "correct": 166,
- "percentage": "78.30188679245283",
- "from": "2023-09-02 09:15:00",
- "to": "2024-08-29 23:00:00"
}, - {
- "value": "0.1",
- "total": 1321,
- "correct": 921,
- "percentage": "69.71990915972748",
- "from": "2023-08-31 08:30:00",
- "to": "2024-08-30 00:15:00"
}, - {
- "value": "0.2",
- "total": 2216,
- "correct": 1520,
- "percentage": "68.59205776173285",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 08:45:00"
}, - {
- "value": "0.3",
- "total": 2165,
- "correct": 1529,
- "percentage": "70.62355658198615",
- "from": "2023-08-31 07:30:00",
- "to": "2024-08-30 06:30:00"
}, - {
- "value": "0.4",
- "total": 1859,
- "correct": 1218,
- "percentage": "65.51909628832706",
- "from": "2023-08-31 07:15:00",
- "to": "2024-08-30 08:45:00"
}, - {
- "value": "0.5",
- "total": 1452,
- "correct": 989,
- "percentage": "68.1129476584022",
- "from": "2023-08-31 11:45:00",
- "to": "2024-08-30 00:15:00"
}, - {
- "value": "0.6",
- "total": 1033,
- "correct": 702,
- "percentage": "67.95740561471443",
- "from": "2023-08-31 08:30:00",
- "to": "2024-08-30 01:15:00"
}, - {
- "value": "0.7",
- "total": 826,
- "correct": 564,
- "percentage": "68.28087167070218",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 07:15:00"
}, - {
- "value": "0.8",
- "total": 615,
- "correct": 400,
- "percentage": "65.04065040650406",
- "from": "2023-08-31 07:30:00",
- "to": "2024-08-30 10:15:00"
}, - {
- "value": "0.9",
- "total": 464,
- "correct": 306,
- "percentage": "65.94827586206897",
- "from": "2023-08-31 11:00:00",
- "to": "2024-08-29 23:00:00"
}, - {
- "value": "1.0",
- "total": 1674,
- "correct": 1100,
- "percentage": "65.71087216248507",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-29 18:00:00"
}
]
}, - {
- "name": "breakout",
- "data": [
- {
- "value": "0.0",
- "total": 708,
- "correct": 526,
- "percentage": "74.29378531073446",
- "from": "2023-08-31 08:00:00",
- "to": "2024-08-29 07:30:00"
}, - {
- "value": "0.1",
- "total": 1330,
- "correct": 967,
- "percentage": "72.70676691729324",
- "from": "2023-08-31 21:15:00",
- "to": "2024-08-30 04:00:00"
}, - {
- "value": "0.2",
- "total": 1250,
- "correct": 907,
- "percentage": "72.56",
- "from": "2023-08-31 07:30:00",
- "to": "2024-08-29 09:00:00"
}, - {
- "value": "0.3",
- "total": 1164,
- "correct": 818,
- "percentage": "70.27491408934708",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 10:15:00"
}, - {
- "value": "0.4",
- "total": 1033,
- "correct": 707,
- "percentage": "68.44143272023233",
- "from": "2023-09-01 04:30:00",
- "to": "2024-08-30 08:45:00"
}, - {
- "value": "0.5",
- "total": 895,
- "correct": 592,
- "percentage": "66.14525139664804",
- "from": "2023-08-31 07:15:00",
- "to": "2024-08-30 04:00:00"
}, - {
- "value": "0.6",
- "total": 802,
- "correct": 518,
- "percentage": "64.58852867830423",
- "from": "2023-08-31 06:45:00",
- "to": "2024-08-30 00:15:00"
}, - {
- "value": "0.7",
- "total": 711,
- "correct": 480,
- "percentage": "67.51054852320675",
- "from": "2023-09-01 00:00:00",
- "to": "2024-08-30 01:15:00"
}, - {
- "value": "0.8",
- "total": 613,
- "correct": 392,
- "percentage": "63.94779771615008",
- "from": "2023-08-31 07:30:00",
- "to": "2024-08-29 23:00:00"
}, - {
- "value": "0.9",
- "total": 543,
- "correct": 346,
- "percentage": "63.72007366482505",
- "from": "2023-09-04 01:30:00",
- "to": "2024-08-30 08:45:00"
}, - {
- "value": "1.0",
- "total": 4788,
- "correct": 3162,
- "percentage": "66.04010025062657",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 06:30:00"
}
]
}, - {
- "name": "overall",
- "data": [
- {
- "value": "overall",
- "total": 20743,
- "correct": 14684,
- "percentage": "70.79014607337415",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 12:45:00"
}
]
}, - {
- "name": "significant",
- "data": [
- {
- "value": "3.0",
- "total": 2920,
- "correct": 2265,
- "percentage": "77.56849315068493",
- "from": "2023-08-31 07:45:00",
- "to": "2024-08-30 07:30:00"
}, - {
- "value": "4.0",
- "total": 2030,
- "correct": 1563,
- "percentage": "76.99507389162562",
- "from": "2023-08-31 07:15:00",
- "to": "2024-08-30 12:45:00"
}, - {
- "value": "5.0",
- "total": 1182,
- "correct": 877,
- "percentage": "74.19627749576988",
- "from": "2023-08-31 07:45:00",
- "to": "2024-08-28 23:00:00"
}, - {
- "value": "6.0",
- "total": 534,
- "correct": 390,
- "percentage": "73.03370786516854",
- "from": "2023-09-01 15:30:00",
- "to": "2024-08-28 15:00:00"
}, - {
- "value": "7.0",
- "total": 177,
- "correct": 127,
- "percentage": "71.75141242937853",
- "from": "2023-08-31 12:00:00",
- "to": "2024-08-25 07:00:00"
}, - {
- "value": "8.0",
- "total": 55,
- "correct": 41,
- "percentage": "74.54545454545455",
- "from": "2023-09-04 21:45:00",
- "to": "2024-07-31 18:00:00"
}, - {
- "value": "9.0",
- "total": 8,
- "correct": 6,
- "percentage": "75.0",
- "from": "2023-09-04 21:45:00",
- "to": "2024-02-15 08:00:00"
}
]
}, - {
- "name": "quality",
- "data": [
- {
- "value": "0.1",
- "total": 30,
- "correct": 29,
- "percentage": "96.66666666666667",
- "from": "2023-09-18 08:00:00",
- "to": "2024-08-27 10:00:00"
}, - {
- "value": "0.2",
- "total": 289,
- "correct": 249,
- "percentage": "86.159169550173",
- "from": "2023-09-02 09:15:00",
- "to": "2024-08-27 10:15:00"
}, - {
- "value": "0.3",
- "total": 806,
- "correct": 614,
- "percentage": "76.1786600496278",
- "from": "2023-08-31 07:30:00",
- "to": "2024-08-30 00:15:00"
}, - {
- "value": "0.4",
- "total": 1822,
- "correct": 1318,
- "percentage": "72.33809001097696",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 01:15:00"
}, - {
- "value": "0.5",
- "total": 2990,
- "correct": 2123,
- "percentage": "71.00334448160535",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 08:45:00"
}, - {
- "value": "0.6",
- "total": 3259,
- "correct": 2156,
- "percentage": "66.15526235041423",
- "from": "2023-08-31 06:45:00",
- "to": "2024-08-30 07:15:00"
}, - {
- "value": "0.7",
- "total": 2753,
- "correct": 1730,
- "percentage": "62.84053759535053",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 08:45:00"
}, - {
- "value": "0.8",
- "total": 1365,
- "correct": 872,
- "percentage": "63.882783882783876",
- "from": "2023-08-31 11:00:00",
- "to": "2024-08-30 10:15:00"
}, - {
- "value": "0.9",
- "total": 491,
- "correct": 308,
- "percentage": "62.729124236252545",
- "from": "2023-08-31 11:00:00",
- "to": "2024-08-30 06:30:00"
}, - {
- "value": "1.0",
- "total": 32,
- "correct": 16,
- "percentage": "50.0",
- "from": "2023-09-04 20:30:00",
- "to": "2024-08-22 04:15:00"
}
]
}, - {
- "name": "interval",
- "data": [
- {
- "value": "15",
- "total": 11943,
- "correct": 8451,
- "percentage": "70.7611152976639",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 12:45:00",
- "description": "15min"
}, - {
- "value": "30",
- "total": 5534,
- "correct": 3928,
- "percentage": "70.97940007228046",
- "from": "2023-08-31 07:30:00",
- "to": "2024-08-29 18:00:00",
- "description": "30min"
}, - {
- "value": "60",
- "total": 2675,
- "correct": 1881,
- "percentage": "70.3177570093458",
- "from": "2023-08-31 08:00:00",
- "to": "2024-08-30 04:00:00",
- "description": "Hourly"
}, - {
- "value": "240",
- "total": 511,
- "correct": 368,
- "percentage": "72.01565557729941",
- "from": "2023-09-04 12:00:00",
- "to": "2024-08-25 20:00:00",
- "description": "4 Hourly"
}, - {
- "value": "1440",
- "total": 80,
- "correct": 56,
- "percentage": "70.0",
- "from": "2023-09-01 00:00:00",
- "to": "2024-07-14 00:00:00",
- "description": "Daily"
}
]
}, - {
- "name": "pattern",
- "data": [
- {
- "value": "Ascending Triangle",
- "total": 637,
- "correct": 477,
- "percentage": "74.88226059654632",
- "from": "2023-08-31 11:15:00",
- "to": "2024-08-30 08:45:00"
}, - {
- "value": "Channel Down",
- "total": 1022,
- "correct": 783,
- "percentage": "76.61448140900195",
- "from": "2023-09-01 01:00:00",
- "to": "2024-08-30 06:30:00"
}, - {
- "value": "Channel Up",
- "total": 1058,
- "correct": 777,
- "percentage": "73.44045368620039",
- "from": "2023-09-01 14:00:00",
- "to": "2024-08-29 18:00:00"
}, - {
- "value": "Descending Triangle",
- "total": 331,
- "correct": 261,
- "percentage": "78.85196374622356",
- "from": "2023-08-31 14:30:00",
- "to": "2024-08-28 07:30:00"
}, - {
- "value": "Double Bottom",
- "total": 32,
- "correct": 27,
- "percentage": "84.375",
- "from": "2023-09-15 06:30:00",
- "to": "2024-07-03 06:00:00"
}, - {
- "value": "Double Top",
- "total": 22,
- "correct": 17,
- "percentage": "77.27272727272727",
- "from": "2023-09-11 03:00:00",
- "to": "2024-08-28 14:30:00"
}, - {
- "value": "Falling Wedge",
- "total": 1030,
- "correct": 711,
- "percentage": "69.02912621359224",
- "from": "2023-08-31 21:45:00",
- "to": "2024-08-30 04:00:00"
}, - {
- "value": "Flag",
- "total": 500,
- "correct": 354,
- "percentage": "70.8",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 10:15:00"
}, - {
- "value": "Head and Shoulders",
- "total": 50,
- "correct": 43,
- "percentage": "86.0",
- "from": "2023-09-06 05:30:00",
- "to": "2024-08-06 12:00:00"
}, - {
- "value": "Inverse Head and Shoulders",
- "total": 68,
- "correct": 58,
- "percentage": "85.29411764705883",
- "from": "2023-09-08 14:00:00",
- "to": "2024-08-20 07:30:00"
}, - {
- "value": "Pennant",
- "total": 751,
- "correct": 407,
- "percentage": "54.19440745672437",
- "from": "2023-08-31 07:30:00",
- "to": "2024-08-29 23:00:00"
}, - {
- "value": "Rectangle",
- "total": 62,
- "correct": 48,
- "percentage": "77.41935483870968",
- "from": "2023-09-01 00:00:00",
- "to": "2024-07-29 14:30:00"
}, - {
- "value": "Resistance",
- "total": 3715,
- "correct": 2854,
- "percentage": "76.82368775235531",
- "from": "2023-08-31 07:15:00",
- "to": "2024-08-30 07:30:00"
}, - {
- "value": "Rising Wedge",
- "total": 1334,
- "correct": 865,
- "percentage": "64.84257871064469",
- "from": "2023-09-01 01:15:00",
- "to": "2024-08-29 09:30:00"
}, - {
- "value": "Support",
- "total": 3191,
- "correct": 2415,
- "percentage": "75.68160451269195",
- "from": "2023-08-31 13:15:00",
- "to": "2024-08-30 12:45:00"
}, - {
- "value": "Triangle",
- "total": 6940,
- "correct": 4587,
- "percentage": "66.09510086455332",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 08:45:00"
}
]
}, - {
- "name": "hourofday",
- "data": [
- {
- "value": "0",
- "total": 909,
- "correct": 586,
- "percentage": "64.46644664466447",
- "from": "2023-09-01 00:00:00",
- "to": "2024-08-30 00:15:00"
}, - {
- "value": "1",
- "total": 953,
- "correct": 625,
- "percentage": "65.58237145855193",
- "from": "2023-09-01 01:00:00",
- "to": "2024-08-30 01:15:00"
}, - {
- "value": "10",
- "total": 822,
- "correct": 625,
- "percentage": "76.03406326034063",
- "from": "2023-09-01 10:30:00",
- "to": "2024-08-30 10:15:00"
}, - {
- "value": "11",
- "total": 868,
- "correct": 630,
- "percentage": "72.58064516129032",
- "from": "2023-08-31 11:00:00",
- "to": "2024-08-29 11:30:00"
}, - {
- "value": "12",
- "total": 1432,
- "correct": 1039,
- "percentage": "72.55586592178771",
- "from": "2023-08-31 12:00:00",
- "to": "2024-08-30 12:45:00"
}, - {
- "value": "13",
- "total": 1351,
- "correct": 1025,
- "percentage": "75.86972612879349",
- "from": "2023-08-31 13:15:00",
- "to": "2024-08-29 13:45:00"
}, - {
- "value": "14",
- "total": 1243,
- "correct": 902,
- "percentage": "72.56637168141593",
- "from": "2023-08-31 14:30:00",
- "to": "2024-08-28 14:45:00"
}, - {
- "value": "15",
- "total": 1014,
- "correct": 735,
- "percentage": "72.48520710059172",
- "from": "2023-08-31 15:00:00",
- "to": "2024-08-29 15:30:00"
}, - {
- "value": "16",
- "total": 805,
- "correct": 569,
- "percentage": "70.6832298136646",
- "from": "2023-08-31 16:00:00",
- "to": "2024-08-29 16:30:00"
}, - {
- "value": "17",
- "total": 666,
- "correct": 439,
- "percentage": "65.91591591591592",
- "from": "2023-09-01 17:00:00",
- "to": "2024-08-28 17:45:00"
}, - {
- "value": "18",
- "total": 619,
- "correct": 410,
- "percentage": "66.23586429725363",
- "from": "2023-09-01 18:45:00",
- "to": "2024-08-29 18:00:00"
}, - {
- "value": "19",
- "total": 591,
- "correct": 373,
- "percentage": "63.113367174280874",
- "from": "2023-08-31 19:30:00",
- "to": "2024-08-28 19:45:00"
}, - {
- "value": "2",
- "total": 666,
- "correct": 452,
- "percentage": "67.86786786786787",
- "from": "2023-09-01 02:30:00",
- "to": "2024-08-27 02:30:00"
}, - {
- "value": "20",
- "total": 648,
- "correct": 359,
- "percentage": "55.401234567901234",
- "from": "2023-09-01 20:00:00",
- "to": "2024-08-29 20:00:00"
}, - {
- "value": "21",
- "total": 411,
- "correct": 235,
- "percentage": "57.17761557177615",
- "from": "2023-08-31 21:15:00",
- "to": "2024-08-26 21:45:00"
}, - {
- "value": "22",
- "total": 382,
- "correct": 230,
- "percentage": "60.20942408376963",
- "from": "2023-09-04 22:30:00",
- "to": "2024-08-28 22:00:00"
}, - {
- "value": "23",
- "total": 532,
- "correct": 321,
- "percentage": "60.338345864661655",
- "from": "2023-09-02 23:45:00",
- "to": "2024-08-29 23:15:00"
}, - {
- "value": "3",
- "total": 505,
- "correct": 347,
- "percentage": "68.71287128712872",
- "from": "2023-09-01 03:30:00",
- "to": "2024-08-30 03:00:00"
}, - {
- "value": "4",
- "total": 663,
- "correct": 462,
- "percentage": "69.68325791855203",
- "from": "2023-09-01 04:00:00",
- "to": "2024-08-30 04:00:00"
}, - {
- "value": "5",
- "total": 815,
- "correct": 625,
- "percentage": "76.68711656441718",
- "from": "2023-09-01 05:45:00",
- "to": "2024-08-29 05:45:00"
}, - {
- "value": "6",
- "total": 1088,
- "correct": 795,
- "percentage": "73.06985294117648",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 06:30:00"
}, - {
- "value": "7",
- "total": 1386,
- "correct": 1088,
- "percentage": "78.4992784992785",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 07:30:00"
}, - {
- "value": "8",
- "total": 1344,
- "correct": 981,
- "percentage": "72.99107142857143",
- "from": "2023-08-31 08:00:00",
- "to": "2024-08-30 08:45:00"
}, - {
- "value": "9",
- "total": 1030,
- "correct": 831,
- "percentage": "80.67961165048544",
- "from": "2023-09-02 09:15:00",
- "to": "2024-08-29 09:45:00"
}
]
}, - {
- "name": "direction",
- "data": [
- {
- "value": "1",
- "total": 10937,
- "correct": 7842,
- "percentage": "71.70156350004572",
- "from": "2023-08-31 06:45:00",
- "to": "2024-08-30 10:15:00"
}, - {
- "value": "-1",
- "total": 9806,
- "correct": 6842,
- "percentage": "69.77360799510504",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 12:45:00"
}
]
}, - {
- "name": "symmetry",
- "data": [
- {
- "value": "0.0",
- "total": 148,
- "correct": 103,
- "percentage": "69.5945945945946",
- "from": "2023-09-04 05:00:00",
- "to": "2024-08-30 01:15:00"
}, - {
- "value": "0.1",
- "total": 333,
- "correct": 250,
- "percentage": "75.07507507507508",
- "from": "2023-09-04 01:00:00",
- "to": "2024-08-26 13:45:00"
}, - {
- "value": "0.2",
- "total": 551,
- "correct": 390,
- "percentage": "70.78039927404718",
- "from": "2023-08-31 14:30:00",
- "to": "2024-08-30 00:00:00"
}, - {
- "value": "0.3",
- "total": 938,
- "correct": 716,
- "percentage": "76.33262260127933",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 07:15:00"
}, - {
- "value": "0.4",
- "total": 1449,
- "correct": 1074,
- "percentage": "74.12008281573499",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 08:45:00"
}, - {
- "value": "0.5",
- "total": 1888,
- "correct": 1343,
- "percentage": "71.13347457627118",
- "from": "2023-08-31 07:15:00",
- "to": "2024-08-30 00:15:00"
}, - {
- "value": "0.6",
- "total": 2230,
- "correct": 1500,
- "percentage": "67.2645739910314",
- "from": "2023-08-31 11:45:00",
- "to": "2024-08-30 08:45:00"
}, - {
- "value": "0.7",
- "total": 2538,
- "correct": 1635,
- "percentage": "64.42080378250591",
- "from": "2023-08-31 07:30:00",
- "to": "2024-08-30 06:30:00"
}, - {
- "value": "0.8",
- "total": 2146,
- "correct": 1387,
- "percentage": "64.63187325256291",
- "from": "2023-08-31 06:45:00",
- "to": "2024-08-30 04:00:00"
}, - {
- "value": "0.9",
- "total": 1352,
- "correct": 864,
- "percentage": "63.905325443786985",
- "from": "2023-08-31 08:30:00",
- "to": "2024-08-30 10:15:00"
}, - {
- "value": "1.0",
- "total": 264,
- "correct": 153,
- "percentage": "57.95454545454546",
- "from": "2023-09-04 10:00:00",
- "to": "2024-08-29 13:45:00"
}
]
}, - {
- "name": "clarity",
- "data": [
- {
- "value": "0.0",
- "total": 1131,
- "correct": 833,
- "percentage": "73.65163572060123",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 00:00:00"
}, - {
- "value": "0.1",
- "total": 279,
- "correct": 218,
- "percentage": "78.13620071684588",
- "from": "2023-08-31 07:30:00",
- "to": "2024-08-29 08:00:00"
}, - {
- "value": "0.2",
- "total": 420,
- "correct": 304,
- "percentage": "72.38095238095238",
- "from": "2023-09-01 14:00:00",
- "to": "2024-08-30 07:15:00"
}, - {
- "value": "0.3",
- "total": 580,
- "correct": 411,
- "percentage": "70.86206896551724",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-29 20:00:00"
}, - {
- "value": "0.4",
- "total": 815,
- "correct": 559,
- "percentage": "68.58895705521473",
- "from": "2023-09-01 07:00:00",
- "to": "2024-08-30 00:15:00"
}, - {
- "value": "0.5",
- "total": 1052,
- "correct": 728,
- "percentage": "69.20152091254754",
- "from": "2023-08-31 12:00:00",
- "to": "2024-08-30 07:15:00"
}, - {
- "value": "0.6",
- "total": 1439,
- "correct": 979,
- "percentage": "68.03335649756775",
- "from": "2023-08-31 11:00:00",
- "to": "2024-08-30 08:45:00"
}, - {
- "value": "0.7",
- "total": 1889,
- "correct": 1287,
- "percentage": "68.13128639491795",
- "from": "2023-08-31 08:30:00",
- "to": "2024-08-30 03:00:00"
}, - {
- "value": "0.8",
- "total": 2419,
- "correct": 1592,
- "percentage": "65.81231914014054",
- "from": "2023-08-31 07:15:00",
- "to": "2024-08-29 13:45:00"
}, - {
- "value": "0.9",
- "total": 2669,
- "correct": 1759,
- "percentage": "65.90483327088798",
- "from": "2023-08-31 06:45:00",
- "to": "2024-08-30 08:45:00"
}, - {
- "value": "1.0",
- "total": 1144,
- "correct": 745,
- "percentage": "65.12237762237763",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 10:15:00"
}
]
}
]
}, - "emerging": {
- "category": [
- {
- "name": "direction",
- "data": [
- {
- "value": "1",
- "total": 9127,
- "correct": 7638,
- "percentage": "83.68576750301304",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-29 05:45:00"
}, - {
- "value": "-1",
- "total": 7695,
- "correct": 5880,
- "percentage": "76.41325536062378",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 11:00:00"
}
]
}, - {
- "name": "hourofday",
- "data": [
- {
- "value": "0",
- "total": 586,
- "correct": 484,
- "percentage": "82.5938566552901",
- "from": "2023-09-01 00:30:00",
- "to": "2024-08-27 00:30:00"
}, - {
- "value": "1",
- "total": 632,
- "correct": 529,
- "percentage": "83.70253164556962",
- "from": "2023-09-01 01:00:00",
- "to": "2024-08-29 01:45:00"
}, - {
- "value": "10",
- "total": 792,
- "correct": 654,
- "percentage": "82.57575757575758",
- "from": "2023-08-31 10:15:00",
- "to": "2024-08-30 10:30:00"
}, - {
- "value": "11",
- "total": 791,
- "correct": 676,
- "percentage": "85.4614412136536",
- "from": "2023-08-31 11:00:00",
- "to": "2024-08-30 11:00:00"
}, - {
- "value": "12",
- "total": 995,
- "correct": 797,
- "percentage": "80.10050251256281",
- "from": "2023-08-31 12:30:00",
- "to": "2024-08-28 12:45:00"
}, - {
- "value": "13",
- "total": 1126,
- "correct": 878,
- "percentage": "77.97513321492006",
- "from": "2023-08-31 13:00:00",
- "to": "2024-08-27 13:45:00"
}, - {
- "value": "14",
- "total": 1156,
- "correct": 905,
- "percentage": "78.2871972318339",
- "from": "2023-08-31 14:15:00",
- "to": "2024-08-28 14:45:00"
}, - {
- "value": "15",
- "total": 927,
- "correct": 708,
- "percentage": "76.37540453074433",
- "from": "2023-08-31 15:00:00",
- "to": "2024-08-28 15:30:00"
}, - {
- "value": "16",
- "total": 797,
- "correct": 636,
- "percentage": "79.79924717691343",
- "from": "2023-08-31 16:00:00",
- "to": "2024-08-29 16:15:00"
}, - {
- "value": "17",
- "total": 722,
- "correct": 542,
- "percentage": "75.06925207756233",
- "from": "2023-08-31 17:15:00",
- "to": "2024-08-27 17:15:00"
}, - {
- "value": "18",
- "total": 664,
- "correct": 495,
- "percentage": "74.54819277108435",
- "from": "2023-08-31 18:45:00",
- "to": "2024-08-29 18:15:00"
}, - {
- "value": "19",
- "total": 588,
- "correct": 453,
- "percentage": "77.04081632653062",
- "from": "2023-08-31 19:30:00",
- "to": "2024-08-29 19:45:00"
}, - {
- "value": "2",
- "total": 526,
- "correct": 431,
- "percentage": "81.93916349809885",
- "from": "2023-09-01 02:30:00",
- "to": "2024-08-29 02:30:00"
}, - {
- "value": "20",
- "total": 460,
- "correct": 355,
- "percentage": "77.17391304347827",
- "from": "2023-09-01 20:00:00",
- "to": "2024-08-28 20:15:00"
}, - {
- "value": "21",
- "total": 316,
- "correct": 228,
- "percentage": "72.15189873417721",
- "from": "2023-09-01 21:30:00",
- "to": "2024-08-28 21:00:00"
}, - {
- "value": "22",
- "total": 325,
- "correct": 244,
- "percentage": "75.07692307692308",
- "from": "2023-08-31 22:45:00",
- "to": "2024-08-27 22:15:00"
}, - {
- "value": "23",
- "total": 412,
- "correct": 303,
- "percentage": "73.54368932038835",
- "from": "2023-09-02 23:15:00",
- "to": "2024-08-28 23:45:00"
}, - {
- "value": "3",
- "total": 471,
- "correct": 382,
- "percentage": "81.104033970276",
- "from": "2023-09-01 03:30:00",
- "to": "2024-08-28 03:45:00"
}, - {
- "value": "4",
- "total": 510,
- "correct": 464,
- "percentage": "90.98039215686275",
- "from": "2023-09-03 04:00:00",
- "to": "2024-08-29 04:15:00"
}, - {
- "value": "5",
- "total": 642,
- "correct": 570,
- "percentage": "88.78504672897196",
- "from": "2023-09-01 05:45:00",
- "to": "2024-08-29 05:45:00"
}, - {
- "value": "6",
- "total": 735,
- "correct": 592,
- "percentage": "80.54421768707482",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-29 06:15:00"
}, - {
- "value": "7",
- "total": 917,
- "correct": 772,
- "percentage": "84.18756815703381",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 07:45:00"
}, - {
- "value": "8",
- "total": 930,
- "correct": 763,
- "percentage": "82.04301075268818",
- "from": "2023-08-31 08:00:00",
- "to": "2024-08-29 08:15:00"
}, - {
- "value": "9",
- "total": 802,
- "correct": 657,
- "percentage": "81.92019950124688",
- "from": "2023-08-31 09:00:00",
- "to": "2024-08-27 09:45:00"
}
]
}, - {
- "name": "interval",
- "data": [
- {
- "value": "15",
- "total": 9939,
- "correct": 8043,
- "percentage": "80.92363416842741",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 11:00:00",
- "description": "15min"
}, - {
- "value": "30",
- "total": 4529,
- "correct": 3596,
- "percentage": "79.39942592183705",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-29 06:00:00",
- "description": "30min"
}, - {
- "value": "60",
- "total": 1982,
- "correct": 1562,
- "percentage": "78.80928355196771",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-26 13:00:00",
- "description": "Hourly"
}, - {
- "value": "240",
- "total": 359,
- "correct": 305,
- "percentage": "84.958217270195",
- "from": "2023-08-31 16:00:00",
- "to": "2024-07-23 16:00:00",
- "description": "4 Hourly"
}, - {
- "value": "1440",
- "total": 13,
- "correct": 12,
- "percentage": "92.3076923076923",
- "from": "2023-09-26 00:00:00",
- "to": "2024-06-27 00:00:00",
- "description": "Daily"
}
]
}, - {
- "name": "overall",
- "data": [
- {
- "value": "overall",
- "total": 16822,
- "correct": 13518,
- "percentage": "80.35905362025917",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 11:00:00"
}
]
}, - {
- "name": "pattern",
- "data": [
- {
- "value": "Resistance",
- "total": 9127,
- "correct": 7638,
- "percentage": "83.68576750301304",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-29 05:45:00"
}, - {
- "value": "Support",
- "total": 7695,
- "correct": 5880,
- "percentage": "76.41325536062378",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-30 11:00:00"
}
]
}, - {
- "name": "significant",
- "data": [
- {
- "value": "10.0",
- "total": 7,
- "correct": 2,
- "percentage": "28.57142857142857",
- "from": "2023-10-18 02:15:00",
- "to": "2024-03-25 15:00:00"
}, - {
- "value": "3.0",
- "total": 6420,
- "correct": 5166,
- "percentage": "80.46728971962617",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-30 11:00:00"
}, - {
- "value": "4.0",
- "total": 5126,
- "correct": 4070,
- "percentage": "79.39914163090128",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-29 19:45:00"
}, - {
- "value": "5.0",
- "total": 3088,
- "correct": 2532,
- "percentage": "81.99481865284974",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-29 08:15:00"
}, - {
- "value": "6.0",
- "total": 1565,
- "correct": 1233,
- "percentage": "78.78594249201278",
- "from": "2023-09-01 12:00:00",
- "to": "2024-08-29 16:15:00"
}, - {
- "value": "7.0",
- "total": 453,
- "correct": 387,
- "percentage": "85.43046357615894",
- "from": "2023-08-31 11:45:00",
- "to": "2024-08-25 22:30:00"
}, - {
- "value": "8.0",
- "total": 140,
- "correct": 113,
- "percentage": "80.71428571428572",
- "from": "2023-09-01 14:00:00",
- "to": "2024-08-08 18:00:00"
}, - {
- "value": "9.0",
- "total": 23,
- "correct": 15,
- "percentage": "65.21739130434783",
- "from": "2023-08-31 16:00:00",
- "to": "2024-06-25 18:45:00"
}
]
}, - {
- "name": "symbol",
- "data": [
- {
- "value": "Brent Crude",
- "total": 1632,
- "correct": 1331,
- "percentage": "81.55637254901961",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-28 02:00:00"
}, - {
- "value": "BTCUSD",
- "total": 3087,
- "correct": 2374,
- "percentage": "76.90314220926466",
- "from": "2023-08-31 09:00:00",
- "to": "2024-08-29 05:45:00"
}, - {
- "value": "ETHUSD",
- "total": 3108,
- "correct": 2509,
- "percentage": "80.72715572715573",
- "from": "2023-08-31 11:00:00",
- "to": "2024-08-30 11:00:00"
}, - {
- "value": "EURUSD",
- "total": 1794,
- "correct": 1466,
- "percentage": "81.71683389074693",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-29 19:45:00"
}, - {
- "value": "FTSE 100",
- "total": 1041,
- "correct": 772,
- "percentage": "74.15946205571565",
- "from": "2023-08-31 07:45:00",
- "to": "2024-08-29 06:15:00"
}, - {
- "value": "Gold Spot",
- "total": 1442,
- "correct": 1205,
- "percentage": "83.56449375866852",
- "from": "2023-08-31 09:00:00",
- "to": "2024-08-28 10:00:00"
}, - {
- "value": "US 500",
- "total": 1512,
- "correct": 1245,
- "percentage": "82.34126984126983",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-28 12:00:00"
}, - {
- "value": "US Crude Oil",
- "total": 1650,
- "correct": 1314,
- "percentage": "79.63636363636364",
- "from": "2023-08-31 06:15:00",
- "to": "2024-08-28 14:45:00"
}, - {
- "value": "USDJPY",
- "total": 1556,
- "correct": 1302,
- "percentage": "83.67609254498714",
- "from": "2023-08-31 07:00:00",
- "to": "2024-08-29 16:15:00"
}
]
}
]
}, - "statsid": 603632470263244200,
- "timezoneoffset": "",
- "timezoneoffsetcount": 0
}
]
}