0
चिंता
72
ध्यान देने वाला

"ट्रेडिंग व्यू" संकेतक का उपयोग करके एफएमजेड रोबोट के साथ इंटरफेस करना

यह पोस्ट पोस्ट करने के लिए बहुत उत्सुक है। अद्यतन किया गयाः 2025-01-14 20:34:25
comments   0
hits   1090

Interfacing with FMZ robot using “Tradingview” indicator

पृष्ठभूमि परिचय

ट्रेडिंग व्यू एक अच्छा बाजार उद्धरण ड्राइंग उपकरण है।

..pineस्क्रिप्ट भी एक शक्तिशाली अस्तित्व है!

बैकटेस्टिंग, अलार्म, और विभिन्न डॉकिंग एक बहुत ही पूर्ण वित्तीय उपकरण है।

लेकिन दो मुद्दे हैं जो हमें परेशान कर रहे हैं...

  • एक महंगी सदस्यता प्रणाली है
  • दूसरा यह है कि बहुत कम ऐसे एक्सचेंज हैं जहां सिग्नल सीधे ट्रेड किए जा सकते हैं, ऐसा लगता है कि दो या तीन हैं।

आज हमारा लेख आपको एक्सचेंज डॉकिंग की समस्या को हल करने के लिए ले जाएगा।

कार्यान्वयन

समग्र विचार इस प्रकार है:

टीवी ((ट्रेडिंग व्यू)pineस्क्रिप्ट -> संकेत अलार्मwebhook-> स्थानीयwebhook serverअनुरोध अग्रेषण -> FMZ बॉट ऑपरेट करने के लिए अनुरोध प्राप्त करता है

चलो कदम-दर-चरण चलते हैं।

ट्रेडिंगव्यू वेबसाइट पर जाएं:

https://www.tradingview.com/

अगला, हम पहले एक बनानेAlert, विवरण के लिए नीचे दिए गए चित्र को देखें

Interfacing with FMZ robot using “Tradingview” indicator

चित्र में कुछ पहलुओं पर ध्यान देने की जरूरत है, जब उत्पन्नAlert.

वैधता अवधि,webhookपता, औरmessageसामग्री को अच्छी तरह से बनाया जाना चाहिए।

समाप्ति तिथि, यह एक नज़र में पता चल जाएगा, और यह समाप्त होने पर अमान्य हो जाएगा...


```Message``` here, it is best we have a clear explanation, in order to let the ```bot``` distinguish from ```Alert``` messages.

I generally set it like this: XXX strategy, order quantity and trading direction

So far, the TradingView part is basically done!

Next, let's get the local ```webhook``` service job done!

This kind of work, Google it will show you lots of results. this article will skip this part, you can do it by yourself.

here is a simple framework for python:

GitHub:https://github.com/shawn-sterling/gitlab-webhook-receiver


Safe, worry-free and convenient, but there are also issues.

This little frame, it will!! Suicide!! Please pay attention to this issue!

So, I wrote another script on the server, When "die" or "offline" appears in the log, I will restart it. later on, i still feel not safe, so i set it restart regularly. Find an unimportant time every hour... Give it a restart, it has been safely running for two months now and there is no more signal losses.

In addition, TradingView only recognizes the port 80, so don't mess up the service port.

So far, We have done the ```Message``` from ```Alert``` part. Next, how do we get Bot?

I don't know if you have paid attention to the interface API document of FMZ at the bottom:

 ![Interfacing with FMZ robot using "Tradingview" indicator](/upload/asset/6e82463afe0dfbc15d96.png) 

We can pass some commands to our little Bot through API!
The specific request example is here, the red box is the request we need.

 ![Interfacing with FMZ robot using "Tradingview" indicator](/upload/asset/6e8cc24e284428b14724.png) 

Here also needs some preparation work.
FMZ API (avatar->account settings->API interface),
A Bot that has been started (we want to get its ID, so we create a new ID first), the number in the URL of a general robot is the ID.

 ![Interfacing with FMZ robot using "Tradingview" indicator](/upload/asset/6e6055878d778eea6265.png) 

Next, we transform the webhook service so that after receiving the message, it will be automatically forwarded to the FMZ Bot.

Finally, don’t forget to fill in the completed ```webhook``` address in the TradingView Alert(format: http://xx.xx.xx.xx:80)

The following is the ```service``` code I changed, you can use it as a reference:

#!/usr/bin/python -tt

-- कोडः यूटीएफ-8 --

से BaseHTTPServer आयात BaseHTTPRequestHandler, HTTPServer json आयात करें आयात लॉगिंग आयात लॉगिंग.हैंडलर्स आयात आयात करना आयात करना आयात उपप्रक्रिया आयात का समय आयात एसएसएल ssl._create_default_https_context = ssl._create_unverified_context

कोशिश करो: आयात md5 आयात urllib2 urllib आयात urlencode से सिवाय: md5 के रूप में hashlib आयात करें urllib.request को urllib2 के रूप में आयात करें urllib.parse आयात urlencode से

############################################################

आपको शायद नीचे दी गई बातों में से कुछ को बदलना होगा

इस स्क्रिप्ट के लिए लॉग फ़ाइल

log_file = /root/webhook/VMA/webhook.log

बॉट एपीआई लाइसेंस

accessKey = secretKey =

HTTP विन्यास

log_max_size = 25165824 # 24 एमबी log_level = लॉगिंग.INFO #log_level = लॉगिंग.DEBUG # डीबीयूजी काफी बहुवचन है

listen_port = 80

आपको चीजों को बदलना बंद कर देना चाहिए जब तक कि आप नहीं जानते कि आप क्या कर रहे हैं

##############################################################################

log = logging.getLogger ((log) log.setLevel ((log_level) log_handler = logging.handlers.RotatingFileHandler ((लॉग_फाइल, maxBytes=log_max_size, backupCount=4) f = लॉगिंग.फॉर्मेटर्स %%%%% समय %%%% फ़ाइलनाम %%%% स्तरनाम %%% संदेश, %B %d %H:%M:%S) log_handler.setFormatter ((f) log.addHandler ((लॉग_हैंडलर)

वर्ग webhookReceiver ((BaseHTTPRequestHandler):

def run_it(self, cmd):
    """
        runs a command
    """
    p = subprocess.Popen(cmd.split(), stdout=subprocess.PIPE,
                         stderr=subprocess.STDOUT)
    log.debug('running:%s' % cmd)
    p.wait()
    if p.returncode != 0:
        log.critical("Non zero exit code:%s executing: %s" % (p.returncode,
                                                              cmd))
    return p.stdout

def bot_conmand(self, method, *args):
    """
        send conmand request to bot api
    """
    d = {
        'version': '1.0',
        'access_key': accessKey,
        'method': method,
        'args': json.dumps(list(args)),
        'nonce': int(time.time() * 1000),
        }
    d['sign'] = md5.md5(('%s|%s|%s|%d|%s' % (d['version'], d['method'], d['args'], d['nonce'], secretKey)).encode('utf-8')).hexdigest()
    return json.loads(urllib2.urlopen('https://www.fmz.com/api/v1', urlencode(d).encode('utf-8')).read().decode('utf-8'))

def do_POST(self):
    """
        receives post, handles it
    """
    log.debug('got post')
    message = 'OK'
    self.rfile._sock.settimeout(5)
    data_string = self.rfile.read(int(self.headers['Content-Length']))
    log.info(data_string)
    self.send_response(200)
    self.send_header("Content-type", "text")
    self.send_header("Content-length", str(len(message)))
    self.end_headers()
    self.wfile.write(message)
    log.debug('TV connection should be closed now.')
    #log.info(self.bot_conmand('GetRobotList', -1, -1, -1)) # GetRobotList(offset, length, robotStatus int)Pass -1 to get all
    log.info(self.bot_conmand('CommandRobot', 169788, data_string))  # CommandRobot(robotId int64, cmd string)Send commands to the robot

def log_message(self, formate, *args):
    """
        disable printing to stdout/stderr for every post
    """
    return

मुख्य परिभाषाः मुख्य घटना। कोशिश करो: सर्वर = HTTPServer (((, listen_port), webhookReceiver) log.info ((वेब सर्वर शुरू किया...) सर्वर.serve_forever() सिवाय KeyboardInterrupt: log.info ((ctrl-c दबाया गया, बंद हो रहा है.) server.socket.close (()

यदिनाम == ‘मुख्य: मुख्य (()


# Implementation within FMZ platform trading strategy

All the above described the communication implementation, our Bot trading strategy also needs to be processed accordingly, in order for us to fix our receiving signal process.

For example, the Alert Message designed at the beginning, You can play it according to your preferences and specific needs. 

The code is as follows, get the information, filter them, do the operation, and end.

फ़ंक्शन get_Command() { //इंटरैक्शन के लिए जिम्मेदार फ़ंक्शन, समय में इंटरैक्टिव रूप से प्रासंगिक मानों को अपडेट करता है, उपयोगकर्ता खुद से विस्तार कर सकते हैं var way = शून्य; //route var cmd = GetCommand(); // इंटरैक्टिव कमांड एपीआई प्राप्त करें var cmd_arr = cmd.split ((,);

 if (cmd) {
     // Define the route
     if (cmd.indexOf("BUY,1") != -1) {
         way = 1;
     }
     if (cmd.indexOf("SELL,1") != -1) {
         way = 2;
     }
     if (cmd.indexOf("BUY,2") != -1) {
         way = 3;
     }
     if (cmd.indexOf("SELL,2") != -1) {
        way = 4;
     }
     // Branch selection operation
     switch (way) {
         case 1:
             xxx
             break;
         case 2:
             xxx
             break;
         case 3:
             xxx
             break;
         case 4:
             xxx
             break;
         default:
             break;
     }
 }

} “`

यह लेख समाप्त हो गया है, आशा है कि यह आपकी मदद कर सकता है!

संबंधित सुझाव
अधिक जानकारी