কৌশলগুলির জন্যJavaScript
, Python
, এবংC++
FMZ Quant Trading প্ল্যাটফর্মের জন্য নিম্নলিখিত এন্ট্রি ফাংশনগুলি সংজ্ঞায়িত করা হয়েছে।
ফাংশনের নাম | বর্ণনা |
---|---|
main() |
এন্ট্রি ফাংশন, এটি কৌশলটির প্রধান ফাংশন। |
onexit() |
এটি একটি পরিষ্কার ফাংশন যখন স্বাভাবিকভাবে প্রস্থান, তার সর্বোচ্চ এক্সিকিউশন সময় 5 মিনিট, যা undeclared রাখা যেতে পারে; যদি টাইমআউট ঘটে, একটিবিরতি দিনত্রুটি রিপোর্ট করা হবে।onerror() লাইভ ট্রেডিংয়ের সময় ফাংশনটি প্রথমে ট্রিগার হয়,onexit() ফাংশনটি আর চালু হবে না। |
onerror() |
এটি একটি অস্বাভাবিক প্রস্থান ফাংশন, এর সর্বোচ্চ এক্সিকিউশন সময় 5 মিনিট, যা undeclared ছেড়ে দেওয়া যেতে পারে।Python এবংC++ এই ফাংশন সমর্থন করে না, এবং ফাংশন backtesting সিস্টেম দ্বারা সমর্থিত হয় না. |
init() |
এটি একটি প্রারম্ভিকীকরণ ফাংশন, যখন এটি চালানো শুরু হয় তখন এর কৌশল প্রোগ্রামটি স্বয়ংক্রিয়ভাবে কল করা হবে, যা undeclared ছেড়ে দেওয়া যেতে পারে। |
onexit()
, ব্যবহারকারী দ্বারা উপলব্ধ সর্বোচ্চ 5 মিনিটের এক্সিকিউশন সময় সঙ্গে পরিস্কার কাজ প্রক্রিয়া।
function main(){
Log("Start running, stop after 5 seconds, and execute onexit function!")
Sleep(1000 * 5)
}
// onexit function implementation
function onexit(){
var beginTime = new Date().getTime()
while(true){
var nowTime = new Date().getTime()
Log("The program stops counting down..The cleaning starts and has passed:", (nowTime - beginTime) / 1000, "Seconds!")
Sleep(1000)
}
}
import time
def main():
Log("Start running, stop after 5 seconds, and execute onexit function!")
Sleep(1000 * 5)
def onexit():
beginTime = time.time() * 1000
while True:
ts = time.time() * 1000
Log("The program stops counting down.The cleaning starts and has passed:", (nowTime - beginTime) / 1000, "Seconds!")
Sleep(1000)
void main() {
Log("Start running, stop after 5 seconds, and execute onexit function!");
Sleep(1000 * 5);
}
void onexit() {
auto beginTime = Unix() * 1000;
while(true) {
auto ts = Unix() * 1000;
Log("The program stops counting down.The cleaning starts and has passed:", (nowTime - beginTime) / 1000, "Seconds!");
Sleep(1000);
}
}
পরীক্ষা করুনonexit()
ফাংশনঃ
function main() {
if (exchange.GetName().startsWith("Futures_")) {
Log("The exchange is futures")
exchange.SetContractType("swap")
} else {
Log("The exchange is spot")
}
if (IsVirtual()) {
try {
onTick()
} catch (e) {
Log("error:", e)
}
} else {
onTick()
}
}
function onTick() {
while (true) {
var ticker = exchange.GetTicker()
LogStatus(_D(), ticker ? ticker.Last : "--")
Sleep(500)
}
}
function onexit() {
Log("Execute the sweep function")
}
def main():
if exchange.GetName().startswith("Futures_"):
Log("The exchange is futures")
else:
Log("The exchange is spot")
if IsVirtual():
try:
onTick()
except Exception as e:
Log(e)
else:
onTick()
def onTick():
while True:
ticker = exchange.GetTicker()
LogStatus(_D(), ticker["Last"] if ticker else "--")
Sleep(500)
def onexit():
Log("Execute the sweep function")
#include <iostream>
#include <exception>
#include <string>
void onTick() {
while (true) {
auto ticker = exchange.GetTicker();
LogStatus(_D(), ticker);
Sleep(500);
}
}
void main() {
std::string prefix = "Futures_";
bool startsWith = exchange.GetName().substr(0, prefix.length()) == prefix;
if (startsWith) {
Log("The exchange is futures");
exchange.SetContractType("swap");
} else {
Log("The exchange is spot");
}
if (IsVirtual()) {
try {
onTick();
} catch (...) {
std::cerr << "Caught unknown exception" << std::endl;
}
} else {
onTick();
}
}
void onexit() {
Log("Execute the sweep function");
}
যেহেতু ব্যাকটেস্টিং সিস্টেমের কৌশলটি সাধারণত একটি অন্তহীন লুপ হিসাবে ডিজাইন করা হয়,onexit()
বাস্তবায়ন কৌশল বাস্তবায়িত ফাংশন backtesting সিস্টেমে সক্রিয় করা যাবে না।onexit()
ব্যাকটেস্টিং সিস্টেমের শেষ চিহ্নটি সনাক্ত করে ফাংশনটি সক্রিয় করা যেতে পারে (ইওএফ ব্যতিক্রম) ।
ব্যবহারকারী সূচনা ফাংশন বাস্তবায়নinit()
, যা স্বয়ংক্রিয়ভাবে ফাংশন চালানো হবেinit()
কৌশল শুরুতে প্রাথমিকীকরণ টাস্ক সম্পন্ন করার জন্য।
function main(){
Log("The first line of the code executed in the program!", "#FF0000")
Log("Exit!")
}
// Initialization the function
function init(){
Log("Initialization!")
}
def main():
Log("The first line of the code executed in the program!", "#FF0000")
Log("Exit!")
def init():
Log("Initialization!")
void main() {
Log("The first line of the code executed in the program!", "#FF0000");
Log("Exit!");
}
void init() {
Log("Initialization!");
}
ফাংশন সম্পাদনonerror()
একটি ব্যতিক্রম ঘটে যখন ট্রিগার করা হবে.Python
এবংC++
.onerror()
ফাংশন একটি নিতে পারেনmsg
প্যারামিটার, যা ব্যতিক্রমটি ট্রিগার করার সময় রিপোর্ট করা ত্রুটি বার্তা।
function main() {
var arr = []
Log(arr[6].Close) // A program exception is intentionally raised here.
}
function onerror(msg) {
Log("error:", msg)
}
# not supported by python
// not supported by C++
ব্যাকটেস্ট সিস্টেম
কৌশল কাঠামো এবং API ফাংশন