POST api/saveSymbolSignalData
Request Information
URI Parameters
None.
Body Parameters
SymbolSignalDataModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| SymbolName | string |
None. |
|
| CandleCloseTime | date |
None. |
|
| CandleColor | boolean |
None. |
|
| CandleSize | integer |
None. |
|
| CandleType | string |
None. |
|
| Alligator | integer |
None. |
|
| ComponentStrength | decimal number |
None. |
|
| TotalStrength | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"SymbolName": "sample string 2",
"CandleCloseTime": "2026-03-15T14:55:27.4903336+05:30",
"CandleColor": true,
"CandleSize": 5,
"CandleType": "sample string 6",
"Alligator": 7,
"ComponentStrength": 8.1,
"TotalStrength": 9.1
}
application/xml, text/xml
Sample:
<SymbolSignalDataModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/R2RDataManager.Library.Models"> <Alligator>7</Alligator> <CandleCloseTime>2026-03-15T14:55:27.4903336+05:30</CandleCloseTime> <CandleColor>true</CandleColor> <CandleSize>5</CandleSize> <CandleType>sample string 6</CandleType> <ComponentStrength>8.1</ComponentStrength> <Id>1</Id> <SymbolName>sample string 2</SymbolName> <TotalStrength>9.1</TotalStrength> </SymbolSignalDataModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.