# インジケーター一覧取得
- Python
- Proto
- C#
- Java
- C++
- JavaScript
get_indicator_list(search_key='', lang_type=IndicatorLangType.NONE, search_mode=IndicatorSearchMode.PARTIAL)
説明
インジケーター一覧を取得します。キーワード、言語タイプ、検索モードで絞り込みが可能です。
パラメータ
パラメータ 型 説明 search_key str 検索キーワード、空文字列の場合は全件返却 lang_type IndicatorLangType インジケーター言語タイプ、未指定または0は言語フィルタなし search_mode IndicatorSearchMode 検索モード、デフォルトは部分一致 戻り値
パラメータ 型 説明 ret RET_CODE API呼び出し結果 data list ret == RET_OK の場合、インジケーターリストを返します str ret != RET_OK の場合、エラー説明を返します
# Qot_GetIndicatorList.proto
説明
インジケーター一覧を取得します。キーワード、言語タイプ、検索モードで絞り込みが可能です。
パラメータ
message C2S
{
optional string searchKey = 1; //検索キーワード、空文字列の場合は全件返却
optional int32 langType = 2; //IndicatorLangType、未指定または0は言語フィルタなし
optional int32 searchMode = 3; //IndicatorSearchMode、デフォルトは部分一致
}
message Request
{
required C2S c2s = 1;
}
2
3
4
5
6
7
8
9
10
11
- 戻り値
//単一言語下のインジケーター情報
message IndicatorInfo
{
optional string shortName = 1; //インジケーター短縮名、同じ言語内で一意
optional string fullName = 2; //インジケーター正式名称
repeated Qot_Common.IndicatorInputParam inputs = 3; //入力パラメータリスト
repeated Qot_Common.IndicatorOutputParam outputs = 4; //出力パラメータリスト
optional string script = 5; //searchMode = Exact かつ searchKey が空でない場合のみスクリプトソースコードを返却
}
//同名インジケーターは MyLang / Python の両バージョンを持つことがあり、同一エントリにまとめて返却
message IndicatorEntry
{
optional IndicatorInfo myLang = 1; //麦言語バージョン(無ければ未返却)
optional IndicatorInfo python = 2; //Python バージョン(無ければ未返却)
}
message S2C
{
repeated IndicatorEntry indicatorList = 1; //インジケーターリスト
}
message Response
{
required int32 retType = 1 [default = -400]; //RetType、戻り値
optional string retMsg = 2;
optional int32 errCode = 3;
optional S2C s2c = 4;
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
- API呼び出し結果の構造体: RetType
プロトコル ID
3259
uint GetIndicatorList(QotGetIndicatorList.Request req);
virtual void OnReply_GetIndicatorList(FTAPI_Conn client, uint nSerialNo, QotGetIndicatorList.Response rsp);
説明
インジケーター一覧を取得します。キーワード、言語タイプ、検索モードで絞り込みが可能です。
パラメータ
message C2S
{
optional string searchKey = 1; //検索キーワード、空文字列の場合は全件返却
optional int32 langType = 2; //IndicatorLangType、未指定または0は言語フィルタなし
optional int32 searchMode = 3; //IndicatorSearchMode、デフォルトは部分一致
}
message Request
{
required C2S c2s = 1;
}
2
3
4
5
6
7
8
9
10
11
- 戻り値
message IndicatorInfo
{
optional string shortName = 1;
optional string fullName = 2;
repeated Qot_Common.IndicatorInputParam inputs = 3;
repeated Qot_Common.IndicatorOutputParam outputs = 4;
optional string script = 5;
}
message IndicatorEntry
{
optional IndicatorInfo myLang = 1;
optional IndicatorInfo python = 2;
}
message S2C
{
repeated IndicatorEntry indicatorList = 1;
}
message Response
{
required int32 retType = 1 [default = -400];
optional string retMsg = 2;
optional int32 errCode = 3;
optional S2C s2c = 4;
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
- API呼び出し結果の構造体: RetType
- Example
- Output
int getIndicatorList(QotGetIndicatorList.Request req);
void onReply_GetIndicatorList(FTAPI_Conn client, int nSerialNo, QotGetIndicatorList.Response rsp);
説明
インジケーター一覧を取得します。キーワード、言語タイプ、検索モードで絞り込みが可能です。
パラメータ
message C2S
{
optional string searchKey = 1; //検索キーワード、空文字列の場合は全件返却
optional int32 langType = 2; //IndicatorLangType、未指定または0は言語フィルタなし
optional int32 searchMode = 3; //IndicatorSearchMode、デフォルトは部分一致
}
message Request
{
required C2S c2s = 1;
}
2
3
4
5
6
7
8
9
10
11
- 戻り値
message IndicatorInfo
{
optional string shortName = 1;
optional string fullName = 2;
repeated Qot_Common.IndicatorInputParam inputs = 3;
repeated Qot_Common.IndicatorOutputParam outputs = 4;
optional string script = 5;
}
message IndicatorEntry
{
optional IndicatorInfo myLang = 1;
optional IndicatorInfo python = 2;
}
message S2C
{
repeated IndicatorEntry indicatorList = 1;
}
message Response
{
required int32 retType = 1 [default = -400];
optional string retMsg = 2;
optional int32 errCode = 3;
optional S2C s2c = 4;
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
- API呼び出し結果の構造体: RetType
- Example
- Output
Futu::u32_t GetIndicatorList(const Qot_GetIndicatorList::Request &stReq);
virtual void OnReply_GetIndicatorList(Futu::u32_t nSerialNo, const Qot_GetIndicatorList::Response &stRsp) = 0;
説明
インジケーター一覧を取得します。キーワード、言語タイプ、検索モードで絞り込みが可能です。
パラメータ
message C2S
{
optional string searchKey = 1; //検索キーワード、空文字列の場合は全件返却
optional int32 langType = 2; //IndicatorLangType、未指定または0は言語フィルタなし
optional int32 searchMode = 3; //IndicatorSearchMode、デフォルトは部分一致
}
message Request
{
required C2S c2s = 1;
}
2
3
4
5
6
7
8
9
10
11
- 戻り値
message IndicatorInfo
{
optional string shortName = 1;
optional string fullName = 2;
repeated Qot_Common.IndicatorInputParam inputs = 3;
repeated Qot_Common.IndicatorOutputParam outputs = 4;
optional string script = 5;
}
message IndicatorEntry
{
optional IndicatorInfo myLang = 1;
optional IndicatorInfo python = 2;
}
message S2C
{
repeated IndicatorEntry indicatorList = 1;
}
message Response
{
required int32 retType = 1 [default = -400];
optional string retMsg = 2;
optional int32 errCode = 3;
optional S2C s2c = 4;
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
- API呼び出し結果の構造体: RetType
- Example
class Program : public FTSPI_Qot, public FTSPI_Conn
{
public:
Program() {
m_pQotApi = FTAPI::CreateQotApi();
m_pQotApi->RegisterQotSpi(this);
m_pQotApi->RegisterConnSpi(this);
}
~Program() {
if (m_pQotApi != nullptr) {
m_pQotApi->UnregisterQotSpi();
m_pQotApi->UnregisterConnSpi();
FTAPI::ReleaseQotApi(m_pQotApi);
m_pQotApi = nullptr;
}
}
void Start() {
m_pQotApi->InitConnect("127.0.0.1", 11111, false);
}
virtual void OnInitConnect(FTAPI_Conn* pConn, Futu::i64_t nErrCode, const char* strDesc) {
Qot_GetIndicatorList::Request req;
Qot_GetIndicatorList::C2S *c2s = req.mutable_c2s();
c2s->set_searchkey("MA");
c2s->set_langtype(Qot_Common::IndicatorLangType_MyLang);
c2s->set_searchmode(Qot_Common::IndicatorSearchMode_Partial);
m_GetIndicatorListSerialNo = m_pQotApi->GetIndicatorList(req);
}
virtual void OnReply_GetIndicatorList(Futu::u32_t nSerialNo, const Qot_GetIndicatorList::Response &stRsp) {
if (nSerialNo != m_GetIndicatorListSerialNo) return;
string resp_str;
ProtoBufToBodyData(stRsp, resp_str);
cout << UTF8ToLocal(resp_str) << endl;
}
protected:
FTAPI_Qot *m_pQotApi;
Futu::u32_t m_GetIndicatorListSerialNo = 0;
};
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
GetIndicatorList(req);
説明
インジケーター一覧を取得します。キーワード、言語タイプ、検索モードで絞り込みが可能です。
パラメータ
message C2S
{
optional string searchKey = 1; //検索キーワード、空文字列の場合は全件返却
optional int32 langType = 2; //IndicatorLangType、未指定または0は言語フィルタなし
optional int32 searchMode = 3; //IndicatorSearchMode、デフォルトは部分一致
}
message Request
{
required C2S c2s = 1;
}
2
3
4
5
6
7
8
9
10
11
- 戻り値
message IndicatorInfo
{
optional string shortName = 1;
optional string fullName = 2;
repeated Qot_Common.IndicatorInputParam inputs = 3;
repeated Qot_Common.IndicatorOutputParam outputs = 4;
optional string script = 5;
}
message IndicatorEntry
{
optional IndicatorInfo myLang = 1;
optional IndicatorInfo python = 2;
}
message S2C
{
repeated IndicatorEntry indicatorList = 1;
}
message Response
{
required int32 retType = 1 [default = -400];
optional string retMsg = 2;
optional int32 errCode = 3;
optional S2C s2c = 4;
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
- API呼び出し結果の構造体: RetType
- Example
import ftWebsocket from "futu-api";
import { Common } from "futu-api/proto";
import beautify from "js-beautify";
function QotGetIndicatorList(){
const { RetType } = Common
let [addr, port, enable_ssl, key] = ["127.0.0.1", 33333, false, '7522027ccf5a06b1'];
let websocket = new ftWebsocket();
websocket.onlogin = (ret, msg)=>{
if (ret) {
const req = {
c2s: {
searchKey: "MA",
langType: 1,
searchMode: 0,
},
};
websocket.GetIndicatorList(req)
.then((res) => {
let { errCode, retMsg, retType, s2c } = res
console.log("GetIndicatorList: errCode %d, retMsg %s, retType %d", errCode, retMsg, retType);
if(retType == RetType.RetType_Succeed){
let data = beautify(JSON.stringify(s2c), {
indent_size: 2,
space_in_empty_paren: true,
});
console.log(data);
}
})
.catch((error) => {
console.log("error:", error);
});
} else {
console.log("start error", msg);
}
};
websocket.start(addr, port, enable_ssl, key);
setTimeout(()=>{ websocket.stop(); process.exit(); }, 5000);
}
QotGetIndicatorList()
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
- Output
GetIndicatorList: errCode 0, retMsg , retType 0
{
"indicatorList": [
{
"myLang": {
"shortName": "MA",
"fullName": "简单移动平均线",
"inputs": [
{ "index": 0, "name": "price", "type": 1 },
{ "index": 1, "name": "period", "type": 0 }
],
"outputs": [
{ "index": 0, "name": "MA", "type": 1 }
]
},
"python": {
"shortName": "MA",
"fullName": "简单移动平均线",
"inputs": [
{ "index": 0, "name": "close", "type": 1 },
{ "index": 1, "name": "period", "type": 0 }
],
"outputs": [
{ "index": 0, "name": "MA", "type": 1 }
]
}
},
{
"myLang": {
"shortName": "MACD",
"fullName": "指数平滑移动平均线",
"inputs": [
{ "index": 0, "name": "price", "type": 1 },
{ "index": 1, "name": "SHORT", "type": 0 },
{ "index": 2, "name": "LONG", "type": 0 },
{ "index": 3, "name": "MID", "type": 0 }
],
"outputs": [
{ "index": 0, "name": "DIF", "type": 1 },
{ "index": 1, "name": "DEA", "type": 1 },
{ "index": 2, "name": "MACD", "type": 1 }
]
}
}
]
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
- Python
- Proto
- C#
- Java
- C++
- JavaScript
get_indicator_list(search_key='', lang_type=IndicatorLangType.NONE, search_mode=IndicatorSearchMode.PARTIAL)
説明
インジケーター一覧を取得します。キーワード、言語タイプ、検索モードで絞り込みが可能です。
パラメータ
パラメータ 型 説明 search_key str 検索キーワード、空文字列の場合は全件返却 lang_type IndicatorLangType インジケーター言語タイプ、未指定または0は言語フィルタなし search_mode IndicatorSearchMode 検索モード、デフォルトは部分一致 戻り値
パラメータ 型 説明 ret RET_CODE API呼び出し結果 data list ret == RET_OK の場合、インジケーターリストを返します str ret != RET_OK の場合、エラー説明を返します
# Qot_GetIndicatorList.proto
説明
インジケーター一覧を取得します。キーワード、言語タイプ、検索モードで絞り込みが可能です。
パラメータ
message C2S
{
optional string searchKey = 1; //検索キーワード、空文字列の場合は全件返却
optional int32 langType = 2; //IndicatorLangType、未指定または0は言語フィルタなし
optional int32 searchMode = 3; //IndicatorSearchMode、デフォルトは部分一致
}
message Request
{
required C2S c2s = 1;
}
2
3
4
5
6
7
8
9
10
11
- 戻り値
message IndicatorInfo
{
optional string shortName = 1;
optional string fullName = 2;
repeated Qot_Common.IndicatorInputParam inputs = 3;
repeated Qot_Common.IndicatorOutputParam outputs = 4;
optional string script = 5;
}
message IndicatorEntry
{
optional IndicatorInfo myLang = 1;
optional IndicatorInfo python = 2;
}
message S2C
{
repeated IndicatorEntry indicatorList = 1;
}
message Response
{
required int32 retType = 1 [default = -400];
optional string retMsg = 2;
optional int32 errCode = 3;
optional S2C s2c = 4;
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
- API呼び出し結果の構造体: RetType
プロトコル ID
3259
uint GetIndicatorList(QotGetIndicatorList.Request req);
virtual void OnReply_GetIndicatorList(MMAPI_Conn client, uint nSerialNo, QotGetIndicatorList.Response rsp);
説明
インジケーター一覧を取得します。キーワード、言語タイプ、検索モードで絞り込みが可能です。
パラメータ
message C2S
{
optional string searchKey = 1;
optional int32 langType = 2;
optional int32 searchMode = 3;
}
message Request
{
required C2S c2s = 1;
}
2
3
4
5
6
7
8
9
10
11
- 戻り値
message IndicatorInfo
{
optional string shortName = 1;
optional string fullName = 2;
repeated Qot_Common.IndicatorInputParam inputs = 3;
repeated Qot_Common.IndicatorOutputParam outputs = 4;
optional string script = 5;
}
message IndicatorEntry
{
optional IndicatorInfo myLang = 1;
optional IndicatorInfo python = 2;
}
message S2C
{
repeated IndicatorEntry indicatorList = 1;
}
message Response
{
required int32 retType = 1 [default = -400];
optional string retMsg = 2;
optional int32 errCode = 3;
optional S2C s2c = 4;
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
- API呼び出し結果の構造体: RetType
- Example
- Output
int getIndicatorList(QotGetIndicatorList.Request req);
void onReply_GetIndicatorList(MMAPI_Conn client, int nSerialNo, QotGetIndicatorList.Response rsp);
説明
インジケーター一覧を取得します。キーワード、言語タイプ、検索モードで絞り込みが可能です。
パラメータ
message C2S
{
optional string searchKey = 1;
optional int32 langType = 2;
optional int32 searchMode = 3;
}
message Request
{
required C2S c2s = 1;
}
2
3
4
5
6
7
8
9
10
11
- 戻り値
message IndicatorInfo
{
optional string shortName = 1;
optional string fullName = 2;
repeated Qot_Common.IndicatorInputParam inputs = 3;
repeated Qot_Common.IndicatorOutputParam outputs = 4;
optional string script = 5;
}
message IndicatorEntry
{
optional IndicatorInfo myLang = 1;
optional IndicatorInfo python = 2;
}
message S2C
{
repeated IndicatorEntry indicatorList = 1;
}
message Response
{
required int32 retType = 1 [default = -400];
optional string retMsg = 2;
optional int32 errCode = 3;
optional S2C s2c = 4;
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
- API呼び出し結果の構造体: RetType
- Example
- Output
Moomoo::u32_t GetIndicatorList(const Qot_GetIndicatorList::Request &stReq);
virtual void OnReply_GetIndicatorList(Moomoo::u32_t nSerialNo, const Qot_GetIndicatorList::Response &stRsp) = 0;
説明
インジケーター一覧を取得します。キーワード、言語タイプ、検索モードで絞り込みが可能です。
パラメータ
message C2S
{
optional string searchKey = 1;
optional int32 langType = 2;
optional int32 searchMode = 3;
}
message Request
{
required C2S c2s = 1;
}
2
3
4
5
6
7
8
9
10
11
- 戻り値
message IndicatorInfo
{
optional string shortName = 1;
optional string fullName = 2;
repeated Qot_Common.IndicatorInputParam inputs = 3;
repeated Qot_Common.IndicatorOutputParam outputs = 4;
optional string script = 5;
}
message IndicatorEntry
{
optional IndicatorInfo myLang = 1;
optional IndicatorInfo python = 2;
}
message S2C
{
repeated IndicatorEntry indicatorList = 1;
}
message Response
{
required int32 retType = 1 [default = -400];
optional string retMsg = 2;
optional int32 errCode = 3;
optional S2C s2c = 4;
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
- API呼び出し結果の構造体: RetType
- Example
class Program : public MMSPI_Qot, public MMSPI_Conn
{
public:
Program() {
m_pQotApi = MMAPI::CreateQotApi();
m_pQotApi->RegisterQotSpi(this);
m_pQotApi->RegisterConnSpi(this);
}
~Program() {
if (m_pQotApi != nullptr) {
m_pQotApi->UnregisterQotSpi();
m_pQotApi->UnregisterConnSpi();
MMAPI::ReleaseQotApi(m_pQotApi);
m_pQotApi = nullptr;
}
}
void Start() {
m_pQotApi->InitConnect("127.0.0.1", 11111, false);
}
virtual void OnInitConnect(MMAPI_Conn* pConn, Moomoo::i64_t nErrCode, const char* strDesc) {
Qot_GetIndicatorList::Request req;
Qot_GetIndicatorList::C2S *c2s = req.mutable_c2s();
c2s->set_searchkey("MA");
c2s->set_langtype(Qot_Common::IndicatorLangType_MyLang);
c2s->set_searchmode(Qot_Common::IndicatorSearchMode_Partial);
m_GetIndicatorListSerialNo = m_pQotApi->GetIndicatorList(req);
}
virtual void OnReply_GetIndicatorList(Moomoo::u32_t nSerialNo, const Qot_GetIndicatorList::Response &stRsp) {
if (nSerialNo != m_GetIndicatorListSerialNo) return;
string resp_str;
ProtoBufToBodyData(stRsp, resp_str);
cout << UTF8ToLocal(resp_str) << endl;
}
protected:
MMAPI_Qot *m_pQotApi;
Moomoo::u32_t m_GetIndicatorListSerialNo = 0;
};
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
GetIndicatorList(req);
説明
インジケーター一覧を取得します。キーワード、言語タイプ、検索モードで絞り込みが可能です。
パラメータ
message C2S
{
optional string searchKey = 1;
optional int32 langType = 2;
optional int32 searchMode = 3;
}
message Request
{
required C2S c2s = 1;
}
2
3
4
5
6
7
8
9
10
11
- 戻り値
message IndicatorInfo
{
optional string shortName = 1;
optional string fullName = 2;
repeated Qot_Common.IndicatorInputParam inputs = 3;
repeated Qot_Common.IndicatorOutputParam outputs = 4;
optional string script = 5;
}
message IndicatorEntry
{
optional IndicatorInfo myLang = 1;
optional IndicatorInfo python = 2;
}
message S2C
{
repeated IndicatorEntry indicatorList = 1;
}
message Response
{
required int32 retType = 1 [default = -400];
optional string retMsg = 2;
optional int32 errCode = 3;
optional S2C s2c = 4;
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
- API呼び出し結果の構造体: RetType
- Example
import mmWebsocket from "moomoo-api";
import { Common } from "moomoo-api/proto";
import beautify from "js-beautify";
function QotGetIndicatorList(){
const { RetType } = Common
let [addr, port, enable_ssl, key] = ["127.0.0.1", 33333, false, '7522027ccf5a06b1'];
let websocket = new mmWebsocket();
websocket.onlogin = (ret, msg)=>{
if (ret) {
const req = {
c2s: {
searchKey: "MA",
langType: 1,
searchMode: 0,
},
};
websocket.GetIndicatorList(req)
.then((res) => {
let { errCode, retMsg, retType, s2c } = res
console.log("GetIndicatorList: errCode %d, retMsg %s, retType %d", errCode, retMsg, retType);
if(retType == RetType.RetType_Succeed){
let data = beautify(JSON.stringify(s2c), {
indent_size: 2,
space_in_empty_paren: true,
});
console.log(data);
}
})
.catch((error) => {
console.log("error:", error);
});
} else {
console.log("start error", msg);
}
};
websocket.start(addr, port, enable_ssl, key);
setTimeout(()=>{ websocket.stop(); process.exit(); }, 5000);
}
QotGetIndicatorList()
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
- Output
GetIndicatorList: errCode 0, retMsg , retType 0
{
"indicatorList": [
{
"myLang": {
"shortName": "MA",
"fullName": "简单移动平均线",
"inputs": [
{ "index": 0, "name": "price", "type": 1 },
{ "index": 1, "name": "period", "type": 0 }
],
"outputs": [
{ "index": 0, "name": "MA", "type": 1 }
]
},
"python": {
"shortName": "MA",
"fullName": "简单移动平均线",
"inputs": [
{ "index": 0, "name": "close", "type": 1 },
{ "index": 1, "name": "period", "type": 0 }
],
"outputs": [
{ "index": 0, "name": "MA", "type": 1 }
]
}
},
{
"myLang": {
"shortName": "MACD",
"fullName": "指数平滑移动平均线",
"inputs": [
{ "index": 0, "name": "price", "type": 1 },
{ "index": 1, "name": "SHORT", "type": 0 },
{ "index": 2, "name": "LONG", "type": 0 },
{ "index": 3, "name": "MID", "type": 0 }
],
"outputs": [
{ "index": 0, "name": "DIF", "type": 1 },
{ "index": 1, "name": "DEA", "type": 1 },
{ "index": 2, "name": "MACD", "type": 1 }
]
}
}
]
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
← 市場定義 インジケーター計算リクエスト →