Download OpenAPI specification: [Correlating_Alerts_API.yaml]
This API retrieves technical indicators that correlate in their direction. For example, when a technical chart pattern and horizontal key level point in the same direction.
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)
This endpoint retrieves correlating alerts using filtering parameters specific in the URL
broker_id (string): (Required) enter broker id for authenticationEndFragment
user (string): (Required) User identifier
token (string): (Required) Authentication token
expire (string): (Required) Expiry timestamp
account_type (string): (Required) Type of account "LIVE" or "DEMO"
start_time (int): Time (in days) to go back for data retrieval
base_group_name (string): filter by group name. See endpoint "Base Group Names". For example "Forex" or "Stocks"
symbol (string): (optional) search by ticker code eg EURUSD
direction (int): (optional) 1 = bullish only, -1 = bearish only
locale (string): Locale setting
online_translate (string): (optional) true = dynamic translation, false = template language (default)
The response will contain an array of objects with the following fields:
id (number): Identifier
gmt_time_found (string): GMT time found
broker_id (number): ID of the broker
base_group_name (string): Base group name
broker_symbol_group_id (number): Broker symbol group ID
symbol (string): Symbol
symbol_id (string): Symbol ID
direction (number): Direction
breakout_price (string): Breakout price
forecast_price (string): Forecast price
forecast_pips (number): Forecast pips
percent_probability (string): Percent probability
nlg_text (object): Natural language generation text
TITLE (string): Title
FULL (string): Full text
TEASER (string): Teaser
CTA (string): Call to action
patterns (array): Array of patterns
type (string): Type of pattern
name (string): Name of the pattern
result_uid (string): Result UID
time_granularity (number): Time granularity
chart_url (string): URL for the chart
online_translate (boolean): Online translation status
| broker_id | string Example: broker_id={{broker_id}} (Required) enter broker id for authentication |
| user | string Example: user={{user}} (Required) for authentication |
| token | string Example: token={{token}} (Required) for authentication |
| expire | string Example: expire={{expire}} (Required) for authentication |
| account_type | string Example: account_type={{account_type}} (Required) for authentication. set to LIVE |
| start_time | string Example: start_time={{start_time}} Time (in days) to go back for data retrieval |
| base_group_name | string Example: base_group_name={{base_group_name}} filter by group name. See endpoint "Base Group Names". For example "Forex" or "Stocks" |
| symbol | string Example: symbol={{symbol}} (optional) search by ticker code eg EURUSD |
| direction | string Example: direction={{direction}} (optional) 1 = bullish, -1 = bearish |
| locale | string Example: locale={{locale}} language of respose, eg 'en' |
| online_translate | string Example: online_translate={{online_translate}} (optional) true = dynamic translation, false = template language (default) |
| Accept | string Example: application/json |
[- {
- "id": 604535279525680100,
- "gmt_time_found": "20240808T124513",
- "broker_id": 859,
- "base_group_name": "Forex",
- "broker_symbol_group_id": 0,
- "symbol": "AUDNZD",
- "symbol_id": "525055079718405100",
- "direction": 1,
- "breakout_price": "1.0949",
- "forecast_price": "1.09722",
- "forecast_pips": 23,
- "percent_probability": "71.09",
- "nlg_text": {
- "TITLE": "Correlating Alert: AUDNZD",
- "FULL": "Coinciding bullish Ascending Triangle Chart Pattern and Resistance Key Level found for AUDNZD. There is a 71.09% probability to hit the 1.09722 forecast",
- "TEASER": "High probability forecast found for AUDNZD",
- "CTA": "Show details"
}, - "patterns": [
- {
- "type": "ChartPattern",
- "name": "Ascending Triangle",
- "result_uid": "604535255991420101",
- "time_granularity": 15,
}, - {
- "type": "KeyLevel",
- "name": "Resistance",
- "result_uid": "604535255991026103",
- "time_granularity": 15,
}
], - "online_translate": false
}, - {
- "id": 604535279525681200,
- "gmt_time_found": "20240808T124513",
- "broker_id": 859,
- "base_group_name": "Forex",
- "broker_symbol_group_id": 0,
- "symbol": "EURJPY",
- "symbol_id": "525055079662979100",
- "direction": 1,
- "breakout_price": "160.337",
- "forecast_price": "160.7051",
- "forecast_pips": 37,
- "percent_probability": "69.27",
- "nlg_text": {
- "TITLE": "Correlating Alert: EURJPY",
- "FULL": "Coinciding bullish Triangle Chart Pattern and Resistance Key Level found for EURJPY. There is a 69.27% probability to hit the 160.7051 forecast",
- "TEASER": "High probability forecast found for EURJPY",
- "CTA": "Show details"
}, - "patterns": [
- {
- "type": "ChartPattern",
- "name": "Triangle",
- "result_uid": "604535255281498101",
- "time_granularity": 15,
}, - {
- "type": "KeyLevel",
- "name": "Resistance",
- "result_uid": "604535255280115103",
- "time_granularity": 15,
}
], - "online_translate": false
}, - {
- "id": 604527140409653100,
- "gmt_time_found": "20240807T020608",
- "broker_id": 859,
- "base_group_name": "Forex",
- "broker_symbol_group_id": 0,
- "symbol": "GBPCHF",
- "symbol_id": "525055026684135100",
- "direction": 1,
- "breakout_price": "1.08775",
- "forecast_price": "1.09314",
- "forecast_pips": 54,
- "percent_probability": "68.94",
- "nlg_text": {
- "TITLE": "Correlating Alert: GBPCHF",
- "FULL": "Coinciding bullish Triangle Chart Pattern and Resistance Key Level found for GBPCHF. There is a 68.94% probability to hit the 1.09314 forecast",
- "TEASER": "High probability forecast found for GBPCHF",
- "CTA": "Show details"
}, - "patterns": [
- {
- "type": "ChartPattern",
- "name": "Triangle",
- "result_uid": "604527080737354101",
- "time_granularity": 60,
}, - {
- "type": "KeyLevel",
- "name": "Resistance",
- "result_uid": "604527080668462103",
- "time_granularity": 30,
}
], - "online_translate": false
}, - {
- "id": 604527140409725000,
- "gmt_time_found": "20240807T020608",
- "broker_id": 859,
- "base_group_name": "Forex",
- "broker_symbol_group_id": 0,
- "symbol": "CHFJPY",
- "symbol_id": "525055077539988100",
- "direction": 1,
- "breakout_price": "171.359",
- "forecast_price": "172.02842",
- "forecast_pips": 67,
- "percent_probability": "70.04",
- "nlg_text": {
- "TITLE": "Correlating Alert: CHFJPY",
- "FULL": "Coinciding bullish Triangle Chart Pattern and Resistance Key Level found for CHFJPY. There is a 70.04% probability to hit the 172.02842 forecast",
- "TEASER": "High probability forecast found for CHFJPY",
- "CTA": "Show details"
}, - "patterns": [
- {
- "type": "ChartPattern",
- "name": "Triangle",
- "result_uid": "604527075765557101",
- "time_granularity": 30,
}, - {
- "type": "KeyLevel",
- "name": "Resistance",
- "result_uid": "604527076186952103",
- "time_granularity": 15,
}
], - "online_translate": false
}, - {
- "id": 604493344417225100,
- "gmt_time_found": "20240801T030441",
- "broker_id": 859,
- "base_group_name": "Forex",
- "broker_symbol_group_id": 0,
- "symbol": "CHFJPY",
- "symbol_id": "525055079668925100",
- "direction": 1,
- "breakout_price": "170.672",
- "forecast_price": "171.265",
- "forecast_pips": 59,
- "percent_probability": "73.32",
- "nlg_text": {
- "TITLE": "Correlating Alert: CHFJPY",
- "FULL": "Coinciding bullish Falling Wedge Chart Pattern and Resistance Key Level found for CHFJPY. There is a 73.32% probability to hit the 171.265 forecast",
- "TEASER": "High probability forecast found for CHFJPY",
- "CTA": "Show details"
}, - "patterns": [
- {
- "type": "ChartPattern",
- "name": "Falling Wedge",
- "result_uid": "604493336848206101",
- "time_granularity": 15,
}, - {
- "type": "ChartPattern",
- "name": "Falling Wedge",
- "result_uid": "604493337628096101",
- "time_granularity": 30,
}, - {
- "type": "ChartPattern",
- "name": "Falling Wedge",
- "result_uid": "604493337622458101",
- "time_granularity": 60,
}, - {
- "type": "KeyLevel",
- "name": "Resistance",
- "result_uid": "604493336845059103",
- "time_granularity": 15,
}
], - "online_translate": false
}, - {
- "id": 604493344417154000,
- "gmt_time_found": "20240801T030441",
- "broker_id": 859,
- "base_group_name": "Forex",
- "broker_symbol_group_id": 0,
- "symbol": "GBPJPY",
- "symbol_id": "525055079680828100",
- "direction": 1,
- "breakout_price": "192.478",
- "forecast_price": "193.319",
- "forecast_pips": 84,
- "percent_probability": "70.8",
- "nlg_text": {
- "TITLE": "Correlating Alert: GBPJPY",
- "FULL": "Coinciding bullish Falling Wedge Chart Pattern and Resistance Key Level found for GBPJPY. There is a 70.8% probability to hit the 193.319 forecast",
- "TEASER": "High probability forecast found for GBPJPY",
- "CTA": "Show details"
}, - "patterns": [
- {
- "type": "ChartPattern",
- "name": "Falling Wedge",
- "result_uid": "604493339387578101",
- "time_granularity": 15,
}, - {
- "type": "KeyLevel",
- "name": "Resistance",
- "result_uid": "604493339387184103",
- "time_granularity": 15,
}
], - "online_translate": false
}, - {
- "id": 604493461619805000,
- "gmt_time_found": "20240801T030640",
- "broker_id": 859,
- "base_group_name": "Forex",
- "broker_symbol_group_id": 0,
- "symbol": "GBPJPY",
- "symbol_id": "525055079699604100",
- "direction": 1,
- "breakout_price": "192.478",
- "forecast_price": "193.371",
- "forecast_pips": 89,
- "percent_probability": "70.44",
- "nlg_text": {
- "TITLE": "Correlating Alert: GBPJPY",
- "FULL": "Coinciding bullish Falling Wedge Chart Pattern and Resistance Key Level found for GBPJPY. There is a 70.44% probability to hit the 193.371 forecast",
- "TEASER": "High probability forecast found for GBPJPY",
- "CTA": "Show details"
}, - "patterns": [
- {
- "type": "ChartPattern",
- "name": "Falling Wedge",
- "result_uid": "604493344679130101",
- "time_granularity": 30,
}, - {
- "type": "KeyLevel",
- "name": "Resistance",
- "result_uid": "604493344678604103",
- "time_granularity": 30,
}
], - "online_translate": false
}, - {
- "id": 604535692834314100,
- "gmt_time_found": "20240808T143151",
- "broker_id": 859,
- "base_group_name": "Forex",
- "broker_symbol_group_id": 0,
- "symbol": "GBPUSD",
- "symbol_id": "525055079720273100",
- "direction": 1,
- "breakout_price": "1.27197",
- "forecast_price": "1.27399",
- "forecast_pips": 20,
- "percent_probability": "71.32",
- "nlg_text": {
- "TITLE": "Correlating Alert: GBPUSD",
- "FULL": "Coinciding bullish Channel Down Chart Pattern and Resistance Key Level found for GBPUSD. There is a 71.32% probability to hit the 1.27399 forecast",
- "TEASER": "High probability forecast found for GBPUSD",
- "CTA": "Show details"
}, - "patterns": [
- {
- "type": "ChartPattern",
- "name": "Channel Down",
- "result_uid": "604535675336676101",
- "time_granularity": 30,
}, - {
- "type": "KeyLevel",
- "name": "Resistance",
- "result_uid": "604535675334896103",
- "time_granularity": 30,
}
], - "online_translate": false
}, - {
- "id": 604530148596772100,
- "gmt_time_found": "20240807T150533",
- "broker_id": 859,
- "base_group_name": "Forex",
- "broker_symbol_group_id": 0,
- "symbol": "EURJPY",
- "symbol_id": "525055079662979100",
- "direction": 1,
- "breakout_price": "160.995",
- "forecast_price": "161.54255",
- "forecast_pips": 55,
- "percent_probability": "69.03",
- "nlg_text": {
- "TITLE": "Correlating Alert: EURJPY",
- "FULL": "Coinciding bullish Triangle Chart Pattern and Resistance Key Level found for EURJPY. There is a 69.03% probability to hit the 161.54255 forecast",
- "TEASER": "High probability forecast found for EURJPY",
- "CTA": "Show details"
}, - "patterns": [
- {
- "type": "ChartPattern",
- "name": "Triangle",
- "result_uid": "604530145493907101",
- "time_granularity": 15,
}, - {
- "type": "KeyLevel",
- "name": "Resistance",
- "result_uid": "604530145486957103",
- "time_granularity": 15,
}
], - "online_translate": false
}, - {
- "id": 604499713468313100,
- "gmt_time_found": "20240802T060614",
- "broker_id": 859,
- "base_group_name": "Forex",
- "broker_symbol_group_id": 0,
- "symbol": "USDJPY",
- "symbol_id": "525055079718954100",
- "direction": -1,
- "breakout_price": "148.936",
- "forecast_price": "148.3552",
- "forecast_pips": 58,
- "percent_probability": "70.34",
- "nlg_text": {
- "TITLE": "Correlating Alert: USDJPY",
- "FULL": "Coinciding bearish Triangle Chart Pattern and Support Key Level found for USDJPY. There is a 70.34% probability to hit the 148.3552 forecast",
- "TEASER": "High probability forecast found for USDJPY",
- "CTA": "Show details"
}, - "patterns": [
- {
- "type": "ChartPattern",
- "name": "Triangle",
- "result_uid": "604499713080122101",
- "time_granularity": 30,
}, - {
- "type": "ChartPattern",
- "name": "Triangle",
- "result_uid": "604499711840386101",
- "time_granularity": 15,
}, - {
- "type": "KeyLevel",
- "name": "Support",
- "result_uid": "604499711839532103",
- "time_granularity": 15,
}
], - "online_translate": false
}, - {
- "id": 604536105295662100,
- "gmt_time_found": "20240808T160801",
- "broker_id": 859,
- "base_group_name": "Forex",
- "broker_symbol_group_id": 0,
- "symbol": "AUDCAD",
- "symbol_id": "525055079663331100",
- "direction": 1,
- "breakout_price": "0.90404",
- "forecast_price": "0.90903",
- "forecast_pips": 50,
- "percent_probability": "67.2",
- "nlg_text": {
- "TITLE": "Correlating Alert: AUDCAD",
- "FULL": "Coinciding bullish Triangle Chart Pattern and Resistance Key Level found for AUDCAD. There is a 67.2% probability to hit the 0.90903 forecast",
- "TEASER": "High probability forecast found for AUDCAD",
- "CTA": "Show details"
}, - "patterns": [
- {
- "type": "ChartPattern",
- "name": "Triangle",
- "result_uid": "604536053515398101",
- "time_granularity": 240,
}, - {
- "type": "KeyLevel",
- "name": "Resistance",
- "result_uid": "604536053323410103",
- "time_granularity": 60,
}
], - "online_translate": false
}, - {
- "id": 604530266360391200,
- "gmt_time_found": "20240807T151545",
- "broker_id": 859,
- "base_group_name": "Forex",
- "broker_symbol_group_id": 0,
- "symbol": "GBPJPY",
- "symbol_id": "525055079680828100",
- "direction": 1,
- "breakout_price": "187.701",
- "forecast_price": "188.088",
- "forecast_pips": 39,
- "percent_probability": "68.83",
- "nlg_text": {
- "TITLE": "Correlating Alert: GBPJPY",
- "FULL": "Coinciding bullish Triangle Chart Pattern and Resistance Key Level found for GBPJPY. There is a 68.83% probability to hit the 188.088 forecast",
- "TEASER": "High probability forecast found for GBPJPY",
- "CTA": "Show details"
}, - "patterns": [
- {
- "type": "ChartPattern",
- "name": "Triangle",
- "result_uid": "604530185626185101",
- "time_granularity": 15,
}, - {
- "type": "KeyLevel",
- "name": "Resistance",
- "result_uid": "604530185624150103",
- "time_granularity": 15,
}
], - "online_translate": false
}, - {
- "id": 604517939439096000,
- "gmt_time_found": "20240805T110622",
- "broker_id": 859,
- "base_group_name": "Forex",
- "broker_symbol_group_id": 0,
- "symbol": "USDCAD",
- "symbol_id": "525055079659096100",
- "direction": -1,
- "breakout_price": "1.38645",
- "forecast_price": "1.38442",
- "forecast_pips": 20,
- "percent_probability": "73.65",
- "nlg_text": {
- "TITLE": "Correlating Alert: USDCAD",
- "FULL": "Coinciding bearish Channel Up Chart Pattern and Support Key Level found for USDCAD. There is a 73.65% probability to hit the 1.38442 forecast",
- "TEASER": "High probability forecast found for USDCAD",
- "CTA": "Show details"
}, - "patterns": [
- {
- "type": "ChartPattern",
- "name": "Channel Up",
- "result_uid": "604517879059902101",
- "time_granularity": 60,
}, - {
- "type": "KeyLevel",
- "name": "Support",
- "result_uid": "604517880315485103",
- "time_granularity": 15,
}
], - "online_translate": false
}, - {
- "id": 604499949510674000,
- "gmt_time_found": "20240802T070505",
- "broker_id": 859,
- "base_group_name": "Forex",
- "broker_symbol_group_id": 0,
- "symbol": "CHFJPY",
- "symbol_id": "525055079637288100",
- "direction": -1,
- "breakout_price": "170.749",
- "forecast_price": "170.404",
- "forecast_pips": 34,
- "percent_probability": "68.59",
- "nlg_text": {
- "TITLE": "Correlating Alert: CHFJPY",
- "FULL": "Coinciding bearish Triangle Chart Pattern and Support Key Level found for CHFJPY. There is a 68.59% probability to hit the 170.404 forecast",
- "TEASER": "High probability forecast found for CHFJPY",
- "CTA": "Show details"
}, - "patterns": [
- {
- "type": "ChartPattern",
- "name": "Triangle",
- "result_uid": "604499944355708101",
- "time_granularity": 60,
}, - {
- "type": "KeyLevel",
- "name": "Support",
- "result_uid": "604499944500765103",
- "time_granularity": 30,
}
], - "online_translate": false
}, - {
- "id": 604526668335614100,
- "gmt_time_found": "20240807T001537",
- "broker_id": 859,
- "base_group_name": "Forex",
- "broker_symbol_group_id": 0,
- "symbol": "USDJPY",
- "symbol_id": "525055079641196100",
- "direction": 1,
- "breakout_price": "144.969",
- "forecast_price": "145.567",
- "forecast_pips": 60,
- "percent_probability": "69.47",
- "nlg_text": {
- "TITLE": "Correlating Alert: USDJPY",
- "FULL": "Coinciding bullish Triangle Chart Pattern and Resistance Key Level found for USDJPY. There is a 69.47% probability to hit the 145.567 forecast",
- "TEASER": "High probability forecast found for USDJPY",
- "CTA": "Show details"
}, - "patterns": [
- {
- "type": "ChartPattern",
- "name": "Triangle",
- "result_uid": "604526646110152101",
- "time_granularity": 15,
}, - {
- "type": "KeyLevel",
- "name": "Resistance",
- "result_uid": "604526646106932103",
- "time_granularity": 15,
}
], - "online_translate": false
}, - {
- "id": 604526668335616100,
- "gmt_time_found": "20240807T001537",
- "broker_id": 859,
- "base_group_name": "Forex",
- "broker_symbol_group_id": 0,
- "symbol": "EURJPY",
- "symbol_id": "525055079662979100",
- "direction": 1,
- "breakout_price": "158.353",
- "forecast_price": "158.939",
- "forecast_pips": 59,
- "percent_probability": "69.47",
- "nlg_text": {
- "TITLE": "Correlating Alert: EURJPY",
- "FULL": "Coinciding bullish Triangle Chart Pattern and Resistance Key Level found for EURJPY. There is a 69.47% probability to hit the 158.939 forecast",
- "TEASER": "High probability forecast found for EURJPY",
- "CTA": "Show details"
}, - "patterns": [
- {
- "type": "ChartPattern",
- "name": "Triangle",
- "result_uid": "604526645142295101",
- "time_granularity": 15,
}, - {
- "type": "KeyLevel",
- "name": "Resistance",
- "result_uid": "604526645141306103",
- "time_granularity": 15,
}
], - "online_translate": false
}, - {
- "id": 604494995248089100,
- "gmt_time_found": "20240801T100457",
- "broker_id": 859,
- "base_group_name": "Forex",
- "broker_symbol_group_id": 0,
- "symbol": "EURAUD",
- "symbol_id": "525055079692027100",
- "direction": -1,
- "breakout_price": "1.65193",
- "forecast_price": "1.64935",
- "forecast_pips": 26,
- "percent_probability": "72.54",
- "nlg_text": {
- "TITLE": "Correlating Alert: EURAUD",
- "FULL": "Coinciding bearish Descending Triangle Chart Pattern and Support Key Level found for EURAUD. There is a 72.54% probability to hit the 1.64935 forecast",
- "TEASER": "High probability forecast found for EURAUD",
- "CTA": "Show details"
}, - "patterns": [
- {
- "type": "ChartPattern",
- "name": "Descending Triangle",
- "result_uid": "604494989474571101",
- "time_granularity": 60,
}, - {
- "type": "ChartPattern",
- "name": "Descending Triangle",
- "result_uid": "604494989480345101",
- "time_granularity": 30,
}, - {
- "type": "KeyLevel",
- "name": "Support",
- "result_uid": "604494989477457103",
- "time_granularity": 60,
}
], - "online_translate": false
}, - {
- "id": 604495289711352000,
- "gmt_time_found": "20240801T111520",
- "broker_id": 859,
- "base_group_name": "Forex",
- "broker_symbol_group_id": 0,
- "symbol": "USDJPY",
- "symbol_id": "525055079641196100",
- "direction": 1,
- "breakout_price": "150.408",
- "forecast_price": "150.8448",
- "forecast_pips": 44,
- "percent_probability": "71.19",
- "nlg_text": {
- "TITLE": "Correlating Alert: USDJPY",
- "FULL": "Coinciding bullish Ascending Triangle Chart Pattern and Resistance Key Level found for USDJPY. There is a 71.19% probability to hit the 150.8448 forecast",
- "TEASER": "High probability forecast found for USDJPY",
- "CTA": "Show details"
}, - "patterns": [
- {
- "type": "ChartPattern",
- "name": "Ascending Triangle",
- "result_uid": "604495266216145101",
- "time_granularity": 15,
}, - {
- "type": "KeyLevel",
- "name": "Resistance",
- "result_uid": "604495266217129103",
- "time_granularity": 15,
}
], - "online_translate": false
}, - {
- "id": 604531681948674000,
- "gmt_time_found": "20240807T213039",
- "broker_id": 859,
- "base_group_name": "Forex",
- "broker_symbol_group_id": 0,
- "symbol": "CHFJPY",
- "symbol_id": "525055077539988100",
- "direction": -1,
- "breakout_price": "170.15",
- "forecast_price": "169.715",
- "forecast_pips": 44,
- "percent_probability": "67.71",
- "nlg_text": {
- "TITLE": "Correlating Alert: CHFJPY",
- "FULL": "Coinciding bearish Triangle Chart Pattern and Support Key Level found for CHFJPY. There is a 67.71% probability to hit the 169.715 forecast",
- "TEASER": "High probability forecast found for CHFJPY",
- "CTA": "Show details"
}, - "patterns": [
- {
- "type": "ChartPattern",
- "name": "Triangle",
- "result_uid": "604531659757522101",
- "time_granularity": 30,
}, - {
- "type": "KeyLevel",
- "name": "Support",
- "result_uid": "604531659758572103",
- "time_granularity": 30,
}
], - "online_translate": false
}, - {
- "id": 604522127063016100,
- "gmt_time_found": "20240806T050529",
- "broker_id": 859,
- "base_group_name": "Forex",
- "broker_symbol_group_id": 0,
- "symbol": "AUDNZD",
- "symbol_id": "525055079718405100",
- "direction": 1,
- "breakout_price": "1.09729",
- "forecast_price": "1.09955",
- "forecast_pips": 29,
- "percent_probability": "71.27",
- "nlg_text": {
- "TITLE": "Correlating Alert: AUDNZD",
- "FULL": "Coinciding bullish Ascending Triangle Chart Pattern and Resistance Key Level found for AUDNZD. There is a 71.27% probability to hit the 1.09955 forecast",
- "TEASER": "High probability forecast found for AUDNZD",
- "CTA": "Show details"
}, - "patterns": [
- {
- "type": "ChartPattern",
- "name": "Ascending Triangle",
- "result_uid": "604522123610135101",
- "time_granularity": 15,
}, - {
- "type": "ChartPattern",
- "name": "Ascending Triangle",
- "result_uid": "604522123887378101",
- "time_granularity": 30,
}, - {
- "type": "KeyLevel",
- "name": "Resistance",
- "result_uid": "604522043867036103",
- "time_granularity": 15,
}, - {
- "type": "KeyLevel",
- "name": "Resistance",
- "result_uid": "604522123886652103",
- "time_granularity": 30,
}
], - "online_translate": false
}, - {
- "id": 604496410372052100,
- "gmt_time_found": "20240801T160551",
- "broker_id": 859,
- "base_group_name": "Forex",
- "broker_symbol_group_id": 0,
- "symbol": "EURAUD",
- "symbol_id": "525055079703282100",
- "direction": 1,
- "breakout_price": "1.65493",
- "forecast_price": "1.65709",
- "forecast_pips": 22,
- "percent_probability": "70.19",
- "nlg_text": {
- "TITLE": "Correlating Alert: EURAUD",
- "FULL": "Coinciding bullish Falling Wedge Chart Pattern and Resistance Key Level found for EURAUD. There is a 70.19% probability to hit the 1.65709 forecast",
- "TEASER": "High probability forecast found for EURAUD",
- "CTA": "Show details"
}, - "patterns": [
- {
- "type": "ChartPattern",
- "name": "Falling Wedge",
- "result_uid": "604496408526841101",
- "time_granularity": 30,
}, - {
- "type": "ChartPattern",
- "name": "Pennant",
- "result_uid": "604496408569196101",
- "time_granularity": 60,
}, - {
- "type": "KeyLevel",
- "name": "Resistance",
- "result_uid": "604496408565654103",
- "time_granularity": 60,
}
], - "online_translate": false
}, - {
- "id": 604534100029596200,
- "gmt_time_found": "20240808T074505",
- "broker_id": 859,
- "base_group_name": "Forex",
- "broker_symbol_group_id": 0,
- "symbol": "EURJPY",
- "symbol_id": "525055079662979100",
- "direction": -1,
- "breakout_price": "159.289",
- "forecast_price": "158.53607",
- "forecast_pips": 75,
- "percent_probability": "69.83",
- "nlg_text": {
- "TITLE": "Correlating Alert: EURJPY",
- "FULL": "Coinciding bearish Triangle Chart Pattern and Support Key Level found for EURJPY. There is a 69.83% probability to hit the 158.53607 forecast",
- "TEASER": "High probability forecast found for EURJPY",
- "CTA": "Show details"
}, - "patterns": [
- {
- "type": "ChartPattern",
- "name": "Triangle",
- "result_uid": "604534075895555101",
- "time_granularity": 15,
}, - {
- "type": "KeyLevel",
- "name": "Support",
- "result_uid": "604534075860282103",
- "time_granularity": 15,
}
], - "online_translate": false
}, - {
- "id": 604522775548449200,
- "gmt_time_found": "20240806T074525",
- "broker_id": 859,
- "base_group_name": "Forex",
- "broker_symbol_group_id": 0,
- "symbol": "AUDJPY",
- "symbol_id": "525055079672144100",
- "direction": -1,
- "breakout_price": "94.565",
- "forecast_price": "94.07142",
- "forecast_pips": 49,
- "percent_probability": "69.8",
- "nlg_text": {
- "TITLE": "Correlating Alert: AUDJPY",
- "FULL": "Coinciding bearish Triangle Chart Pattern and Support Key Level found for AUDJPY. There is a 69.8% probability to hit the 94.07142 forecast",
- "TEASER": "High probability forecast found for AUDJPY",
- "CTA": "Show details"
}, - "patterns": [
- {
- "type": "ChartPattern",
- "name": "Triangle",
- "result_uid": "604522752520555101",
- "time_granularity": 15,
}, - {
- "type": "KeyLevel",
- "name": "Support",
- "result_uid": "604522752520354103",
- "time_granularity": 15,
}
], - "online_translate": false
}, - {
- "id": 604497649727216100,
- "gmt_time_found": "20240801T210653",
- "broker_id": 859,
- "base_group_name": "Forex",
- "broker_symbol_group_id": 0,
- "symbol": "USDJPY",
- "symbol_id": "525055079641196100",
- "direction": -1,
- "breakout_price": "149.358",
- "forecast_price": "148.8882",
- "forecast_pips": 47,
- "percent_probability": "71.08",
- "nlg_text": {
- "TITLE": "Correlating Alert: USDJPY",
- "FULL": "Coinciding bearish Descending Triangle Chart Pattern and Support Key Level found for USDJPY. There is a 71.08% probability to hit the 148.8882 forecast",
- "TEASER": "High probability forecast found for USDJPY",
- "CTA": "Show details"
}, - "patterns": [
- {
- "type": "ChartPattern",
- "name": "Descending Triangle",
- "result_uid": "604497592300862101",
- "time_granularity": 15,
}, - {
- "type": "KeyLevel",
- "name": "Support",
- "result_uid": "604497592301326103",
- "time_granularity": 15,
}
], - "online_translate": false
}, - {
- "id": 604526786590160100,
- "gmt_time_found": "20240807T003115",
- "broker_id": 859,
- "base_group_name": "Forex",
- "broker_symbol_group_id": 0,
- "symbol": "USDJPY",
- "symbol_id": "525055079718954100",
- "direction": 1,
- "breakout_price": "145.194",
- "forecast_price": "145.567",
- "forecast_pips": 37,
- "percent_probability": "70.22",
- "nlg_text": {
- "TITLE": "Correlating Alert: USDJPY",
- "FULL": "Coinciding bullish Triangle Chart Pattern and Resistance Key Level found for USDJPY. There is a 70.22% probability to hit the 145.567 forecast",
- "TEASER": "High probability forecast found for USDJPY",
- "CTA": "Show details"
}, - "patterns": [
- {
- "type": "ChartPattern",
- "name": "Triangle",
- "result_uid": "604526707580736101",
- "time_granularity": 30,
}, - {
- "type": "KeyLevel",
- "name": "Resistance",
- "result_uid": "604526707511810103",
- "time_granularity": 15,
}
], - "online_translate": false
}, - {
- "id": 604526786590163100,
- "gmt_time_found": "20240807T003115",
- "broker_id": 859,
- "base_group_name": "Forex",
- "broker_symbol_group_id": 0,
- "symbol": "EURJPY",
- "symbol_id": "525055079660840100",
- "direction": 1,
- "breakout_price": "158.635",
- "forecast_price": "158.939",
- "forecast_pips": 30,
- "percent_probability": "70.22",
- "nlg_text": {
- "TITLE": "Correlating Alert: EURJPY",
- "FULL": "Coinciding bullish Triangle Chart Pattern and Resistance Key Level found for EURJPY. There is a 70.22% probability to hit the 158.939 forecast",
- "TEASER": "High probability forecast found for EURJPY",
- "CTA": "Show details"
}, - "patterns": [
- {
- "type": "ChartPattern",
- "name": "Triangle",
- "result_uid": "604526705420153101",
- "time_granularity": 30,
}, - {
- "type": "KeyLevel",
- "name": "Resistance",
- "result_uid": "604526705967342103",
- "time_granularity": 15,
}, - {
- "type": "KeyLevel",
- "name": "Resistance",
- "result_uid": "604526705419162103",
- "time_granularity": 30,
}
], - "online_translate": false
}, - {
- "id": 604500185726086100,
- "gmt_time_found": "20240802T080520",
- "broker_id": 859,
- "base_group_name": "Forex",
- "broker_symbol_group_id": 0,
- "symbol": "EURJPY",
- "symbol_id": "525055079662979100",
- "direction": 1,
- "breakout_price": "161.217",
- "forecast_price": "161.784",
- "forecast_pips": 57,
- "percent_probability": "73.39",
- "nlg_text": {
- "TITLE": "Correlating Alert: EURJPY",
- "FULL": "Coinciding bullish Falling Wedge Chart Pattern and Resistance Key Level found for EURJPY. There is a 73.39% probability to hit the 161.784 forecast",
- "TEASER": "High probability forecast found for EURJPY",
- "CTA": "Show details"
}, - "patterns": [
- {
- "type": "ChartPattern",
- "name": "Falling Wedge",
- "result_uid": "604500181446914101",
- "time_granularity": 15,
}, - {
- "type": "ChartPattern",
- "name": "Falling Wedge",
- "result_uid": "604500179898301101",
- "time_granularity": 30,
}, - {
- "type": "KeyLevel",
- "name": "Resistance",
- "result_uid": "604500181444093103",
- "time_granularity": 15,
}
], - "online_translate": false
}, - {
- "id": 604501305791541100,
- "gmt_time_found": "20240802T124514",
- "broker_id": 859,
- "base_group_name": "Forex",
- "broker_symbol_group_id": 0,
- "symbol": "CHFJPY",
- "symbol_id": "525055079668925100",
- "direction": -1,
- "breakout_price": "170.189",
- "forecast_price": "169.442",
- "forecast_pips": 75,
- "percent_probability": "71.02",
- "nlg_text": {
- "TITLE": "Correlating Alert: CHFJPY",
- "FULL": "Coinciding bearish Descending Triangle Chart Pattern and Support Key Level found for CHFJPY. There is a 71.02% probability to hit the 169.442 forecast",
- "TEASER": "High probability forecast found for CHFJPY",
- "CTA": "Show details"
}, - "patterns": [
- {
- "type": "ChartPattern",
- "name": "Descending Triangle",
- "result_uid": "604501282013208101",
- "time_granularity": 15,
}, - {
- "type": "ChartPattern",
- "name": "Triangle",
- "result_uid": "604501282050200101",
- "time_granularity": 15,
}, - {
- "type": "KeyLevel",
- "name": "Support",
- "result_uid": "604501282014985103",
- "time_granularity": 15,
}
], - "online_translate": false
}, - {
- "id": 604520711390138100,
- "gmt_time_found": "20240805T230422",
- "broker_id": 859,
- "base_group_name": "Forex",
- "broker_symbol_group_id": 0,
- "symbol": "CHFJPY",
- "symbol_id": "525055079668925100",
- "direction": 1,
- "breakout_price": "169.709",
- "forecast_price": "170.09249",
- "forecast_pips": 38,
- "percent_probability": "70.8",
- "nlg_text": {
- "TITLE": "Correlating Alert: CHFJPY",
- "FULL": "Coinciding bullish Flag Chart Pattern and Resistance Key Level found for CHFJPY. There is a 70.8% probability to hit the 170.09249 forecast",
- "TEASER": "High probability forecast found for CHFJPY",
- "CTA": "Show details"
}, - "patterns": [
- {
- "type": "ChartPattern",
- "name": "Flag",
- "result_uid": "604520703613090101",
- "time_granularity": 15,
}, - {
- "type": "KeyLevel",
- "name": "Resistance",
- "result_uid": "604520703617089103",
- "time_granularity": 15,
}
], - "online_translate": false
}, - {
- "id": 604501423841214100,
- "gmt_time_found": "20240802T130557",
- "broker_id": 859,
- "base_group_name": "Forex",
- "broker_symbol_group_id": 0,
- "symbol": "GBPUSD",
- "symbol_id": "525055079720273100",
- "direction": 1,
- "breakout_price": "1.28023",
- "forecast_price": "1.28239",
- "forecast_pips": 22,
- "percent_probability": "71.77",
- "nlg_text": {
- "TITLE": "Correlating Alert: GBPUSD",
- "FULL": "Coinciding bullish Channel Down Chart Pattern and Resistance Key Level found for GBPUSD. There is a 71.77% probability to hit the 1.28239 forecast",
- "TEASER": "High probability forecast found for GBPUSD",
- "CTA": "Show details"
}, - "patterns": [
- {
- "type": "ChartPattern",
- "name": "Channel Down",
- "result_uid": "604501363656422101",
- "time_granularity": 30,
}, - {
- "type": "KeyLevel",
- "name": "Resistance",
- "result_uid": "604501363651889103",
- "time_granularity": 30,
}
], - "online_translate": false
}, - {
- "id": 604500421693568100,
- "gmt_time_found": "20240802T085241",
- "broker_id": 859,
- "base_group_name": "Forex",
- "broker_symbol_group_id": 0,
- "symbol": "GBPUSD",
- "symbol_id": "525055079708222100",
- "direction": -1,
- "breakout_price": "1.27279",
- "forecast_price": "1.25967",
- "forecast_pips": 131,
- "percent_probability": "72.73",
- "nlg_text": {
- "TITLE": "Correlating Alert: GBPUSD",
- "FULL": "Coinciding bearish Channel Up Chart Pattern and Support Key Level found for GBPUSD. There is a 72.73% probability to hit the 1.25967 forecast",
- "TEASER": "High probability forecast found for GBPUSD",
- "CTA": "Show details"
}, - "patterns": [
- {
- "type": "ChartPattern",
- "name": "Channel Up",
- "result_uid": "604500367567392101",
- "time_granularity": 1440,
}, - {
- "type": "KeyLevel",
- "name": "Support",
- "result_uid": "604498304723365103",
- "time_granularity": 1440,
}
], - "online_translate": false
}, - {
- "id": 604527022904560100,
- "gmt_time_found": "20240807T014537",
- "broker_id": 859,
- "base_group_name": "Forex",
- "broker_symbol_group_id": 0,
- "symbol": "USDJPY",
- "symbol_id": "525055079641196100",
- "direction": 1,
- "breakout_price": "146.493",
- "forecast_price": "146.9543",
- "forecast_pips": 46,
- "percent_probability": "71.52",
- "nlg_text": {
- "TITLE": "Correlating Alert: USDJPY",
- "FULL": "Coinciding bullish Ascending Triangle Chart Pattern and Resistance Key Level found for USDJPY. There is a 71.52% probability to hit the 146.9543 forecast",
- "TEASER": "High probability forecast found for USDJPY",
- "CTA": "Show details"
}, - "patterns": [
- {
- "type": "ChartPattern",
- "name": "Ascending Triangle",
- "result_uid": "604527000003361101",
- "time_granularity": 15,
}, - {
- "type": "KeyLevel",
- "name": "Resistance",
- "result_uid": "604527000004158103",
- "time_granularity": 15,
}
], - "online_translate": false
}, - {
- "id": 604527022904561200,
- "gmt_time_found": "20240807T014537",
- "broker_id": 859,
- "base_group_name": "Forex",
- "broker_symbol_group_id": 0,
- "symbol": "CHFJPY",
- "symbol_id": "525055079668925100",
- "direction": 1,
- "breakout_price": "171.015",
- "forecast_price": "171.3342",
- "forecast_pips": 32,
- "percent_probability": "69.3",
- "nlg_text": {
- "TITLE": "Correlating Alert: CHFJPY",
- "FULL": "Coinciding bullish Triangle Chart Pattern and Resistance Key Level found for CHFJPY. There is a 69.3% probability to hit the 171.3342 forecast",
- "TEASER": "High probability forecast found for CHFJPY",
- "CTA": "Show details"
}, - "patterns": [
- {
- "type": "ChartPattern",
- "name": "Triangle",
- "result_uid": "604526999768267101",
- "time_granularity": 15,
}, - {
- "type": "KeyLevel",
- "name": "Resistance",
- "result_uid": "604526999765898103",
- "time_granularity": 15,
}
], - "online_translate": false
}, - {
- "id": 604525902005892100,
- "gmt_time_found": "20240806T210410",
- "broker_id": 859,
- "base_group_name": "Forex",
- "broker_symbol_group_id": 0,
- "symbol": "AUDJPY",
- "symbol_id": "525055079672144100",
- "direction": -1,
- "breakout_price": "94.107",
- "forecast_price": "93.373",
- "forecast_pips": 73,
- "percent_probability": "69.68",
- "nlg_text": {
- "TITLE": "Correlating Alert: AUDJPY",
- "FULL": "Coinciding bearish Triangle Chart Pattern and Support Key Level found for AUDJPY. There is a 69.68% probability to hit the 93.373 forecast",
- "TEASER": "High probability forecast found for AUDJPY",
- "CTA": "Show details"
}, - "patterns": [
- {
- "type": "ChartPattern",
- "name": "Triangle",
- "result_uid": "604525893310067101",
- "time_granularity": 15,
}, - {
- "type": "ChartPattern",
- "name": "Triangle",
- "result_uid": "604525893098031101",
- "time_granularity": 30,
}, - {
- "type": "KeyLevel",
- "name": "Support",
- "result_uid": "604525893307901103",
- "time_granularity": 15,
}
], - "online_translate": false
}
]This endpoint provides a list of base group names available for the specified brokerid. These values can then be used in the /correlating_alerts/ endpoint to filter results based on this group.
A valid request with an authorized MD5 token will be accepted
Status 200 - application/json - list of base group names
The JSON object includes the following keys:
broker_id - the brokerid for which this request was made.
broker_name - the name of the broker
base_group_name - list of base group names
| broker_id | string Example: broker_id={{broker_id}} (Required) enter broker id for authentication |
| user | string Example: user={{user}} (Required) for authentication |
| token | string Example: token={{token}} (Required) for authentication |
| expire | string Example: expire={{expire}} (Required) for authentication |
| account_type | string Example: account_type={{account_type}} (Required) for authentication. set to LIVE |
| Accept | string Example: application/json |
{- "broker_id": "859",
- "broker_name": "Autochartist50Demo",
- "default": "False",
- "base_group_name": [
- "Forex",
- "Stocks",
- "Commodities",
- "Indices"
]
}