0
উদ্বেগ
72
পর্যবেক্ষক

"ট্রেডিংভিউ" সূচক ব্যবহার করে FMZ রোবটের সাথে ইন্টারফেস

১ জুলাই, ২০২০ ১১ঃ০৮ঃ২২ তারিখে তৈরি আপডেট করা হয়েছেঃ 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:

গিটহাবঃ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

-- কোডিংঃ ইউটিএফ-৮ --

BaseHTTPServer থেকে BaseHTTPRequestHandler, HTTPServer আমদানি করুন json আমদানি করুন আমদানি লগিং আমদানি লগিং.হ্যান্ডলার আমদানি আমদানি আমদানি করা আমদানি উপ-প্রক্রিয়া আমদানি সময় এসএসএল আমদানি করুন ssl._create_default_https_context = ssl._create_unverified_context

চেষ্টা করুনঃ আমদানি md5 ইউআরএলআইবি2 আমদানি urllib থেকে আমদানি করুন urlencode ব্যতীতঃ এমডি৫ হিসাবে হ্যাশলিব আমদানি করুন urllib2 হিসাবে urllib.request আমদানি করুন urllib.parse থেকে urlencode আমদানি করুন

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

আপনার সম্ভবত নিচের কিছু বিষয় পরিবর্তন করতে হবে

এই স্ক্রিপ্টের জন্য লগ ফাইল

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

বটপি লাইসেন্স

accessKey = secretKey =

HTTP কনফিগার করুন

log_max_size = 25165824 # 24 MB log_level = লগিং.INFO #log_level = লগিং.DEBUG # DEBUG বেশ শব্দসমৃদ্ধ

listen_port = ৮০

আপনি কি করছেন তা যদি না জানেন তবে আপনি জিনিসগুলি পরিবর্তন করা বন্ধ করা উচিত

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

log = logging.getLogger ((log) log.setLevel ((log_level) log_handler = logging.handlers.RotatingFileHandler ((লগ_ফাইল, maxBytes=log_max_size, backupCount=4) f = লগিং.ফরম্যাট ((%(এস্টিটাইম) s %(ফাইলের নাম) s %(স্তরের নাম) s %(বার্তা) s , %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 (( ওয়েব সার্ভার শুরু...) server.serve_forever (() keyboardInterrupt ব্যতীতঃ log.info ((ctrl-c চাপুন, বন্ধ করুন.) সার্ভার.সকেট.ক্লোজ (()

যদিনাম == ‘প্রধান: প্রধান (()


# 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 = null; //rout var cmd = GetCommand(); // ইন্টারেক্টিভ কমান্ড API পান 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;
     }
 }

} “`

এই নিবন্ধটি শেষ, আশা করি এটি আপনাকে সাহায্য করতে পারে!

সংশ্লিষ্ট পরামর্শ
আরও দেখুন