Telegram |
ArthaChitra lets you share messages to a Telegram channel via a sharp script code. A sample code will be like
private bool isTelegram = false; protected override void OnBarUpdate() { if (this.State == State.Realtime && !this.isTelegram) { this.Share(Social.SocialType.Telegram, "Hello from indicator..."); this.isTelegram = true; }
To share any message on Telegram you need the following:
Once you have the above details, you need to configure ArthaChitra as mentioned below:
|
Please do note: Telegram do have a throttling policy. Please click here to know more about it.