NexusFi: Find Your Edge


Home Menu

 





What language does ProRealTime use?


Discussion in Platforms and Indicators

Updated
      Top Posters
    1. looks_one Trigger Happy with 4 posts (0 thanks)
    2. looks_two cory with 2 posts (1 thanks)
    3. looks_3 Nicolas11 with 1 posts (1 thanks)
    4. looks_4 Quick Summary with 1 posts (0 thanks)
    1. trending_up 7,879 views
    2. thumb_up 2 thanks given
    3. group 2 followers
    1. forum 7 posts
    2. attach_file 1 attachments




 
Search this Thread
  #1 (permalink)
Trigger Happy
Queensland, Australia
 
Posts: 8 since Jun 2013
Thanks Given: 3
Thanks Received: 3

G'day,

Does anyone know what language ProRealTime use for their indicators? I am interested in finding a indicator and I have no idea what language ProRealTime use, so I am unable to look and choose an indicator that will work for me. Thanx in advanced.

Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Help re translation of ninjascript to EL
NinjaTrader
Better Renko Gaps
The Elite Circle
Elite Trader Funding, Avoid?
Trading Reviews and Vendors
tick data interval discrepancy
NinjaTrader
How to plot a custom icon for crossover
NinjaTrader
 
  #3 (permalink)
 
cory's Avatar
 cory 
virginia
 
Experience: Intermediate
Platform: ninja
Trading: NQ
Posts: 6,098 since Jun 2009
Thanks Given: 877
Thanks Received: 8,090



Trigger Happy View Post
G'day,

Does anyone know what language ProRealTime use for their indicators? I am interested in finding a indicator and I have no idea what language ProRealTime use, so I am unable to look and choose an indicator that will work for me. Thanx in advanced.

visual basic Comparative Visual Chart V/ProRealTime/MT4 | Pro CFD

Reply With Quote
Thanked by:
  #4 (permalink)
Trigger Happy
Queensland, Australia
 
Posts: 8 since Jun 2013
Thanks Given: 3
Thanks Received: 3



Thanx Cory, I have noticed that there is not a section in the Downloads / Indicators section for Visual Basic, do any of the other platforms use Visual Basic? Will any indicators in the Downloads / Indicators section work in ProRealTime advanced charts. Thanx in advanced.

Reply With Quote
  #5 (permalink)
 
cory's Avatar
 cory 
virginia
 
Experience: Intermediate
Platform: ninja
Trading: NQ
Posts: 6,098 since Jun 2009
Thanks Given: 877
Thanks Received: 8,090

no prorealtime indi here but base on their programming manual and video tutorial it is not too hard, exmp:

Pinbar indicator called "Pinbar ID"

value = 0
clong1 = low < low[1] and low<low[2]
clong2 = close >= low[1]-1 and open >= low[1]-1
clong3 = abs(open - close) < 4*range/10
clong4 = open > (low + range*5/10) and close > (low + range*5/10)
//clong5 = range > average[100](averagetruerange[14](close))*1.2
//clong6 = SMI[14,3,5](close)<35
cshort1 = high > high[1] and high > high[2]
cshort2 = close <= high[1]+1 and open <= high[1]+1
cshort3 = abs(open - close) < 4*range/10
cshort4 = open < (high - range*5/10) and close < (high - range*5/10)
//cshort5 = range > average[100](averagetruerange[14](close))*1.2
//cshort6 = SMI[14,3,5](close)> -35
if clong1 and clong2 and clong3 and clong4 then
value = 10
elsif cshort1 and cshort2 and cshort3 and cshort4 then
value = -10
endif
return value


pinbar scanner current bar

myPinbarID = CALL "Pinbar ID"
screener[abs(myPinbarID) > 0](close AS "Price")

pinbar scanner previous bar

myPinbarID = CALL "Pinbar ID"
screener[abs(myPinbarID[1]) > 0](close AS "Price")

Reply With Quote
  #6 (permalink)
Trigger Happy
Queensland, Australia
 
Posts: 8 since Jun 2013
Thanks Given: 3
Thanks Received: 3


cory View Post
no prorealtime indi here but base on their programming manual and video tutorial it is not too hard, exmp:

Pinbar indicator called "Pinbar ID"

value = 0
clong1 = low < low[1] and low<low[2]
clong2 = close >= low[1]-1 and open >= low[1]-1
clong3 = abs(open - close) < 4*range/10
clong4 = open > (low + range*5/10) and close > (low + range*5/10)
//clong5 = range > average[100](averagetruerange[14](close))*1.2
//clong6 = SMI[14,3,5](close)<35
cshort1 = high > high[1] and high > high[2]
cshort2 = close <= high[1]+1 and open <= high[1]+1
cshort3 = abs(open - close) < 4*range/10
cshort4 = open < (high - range*5/10) and close < (high - range*5/10)
//cshort5 = range > average[100](averagetruerange[14](close))*1.2
//cshort6 = SMI[14,3,5](close)> -35
if clong1 and clong2 and clong3 and clong4 then
value = 10
elsif cshort1 and cshort2 and cshort3 and cshort4 then
value = -10
endif
return value


pinbar scanner current bar

myPinbarID = CALL "Pinbar ID"
screener[abs(myPinbarID) > 0](close AS "Price")

pinbar scanner previous bar

myPinbarID = CALL "Pinbar ID"
screener[abs(myPinbarID[1]) > 0](close AS "Price")



G'day Cory, I tried loading the above 'Pinbar ID' indicator but it kept coming back with various Syntax errors. I have no experience or understanding of program language so I am unable to create the indicators I am after.

I am trying to get an Auto-Fibonacci Indicator, I have found 3 indicators on this site that seem to be what I am after but they are not created for ProRealTime advanced charts. 1 is a re-created Nexgen T-3 Fib ProTrader indicator by Fat Tails and the other 2 indicators I am interested in are below:

https://nexusfi.com/download/multicharts/1120-download.html?view

https://nexusfi.com/download/vip_elite_circle/1091-download.html?view

I don't know the authors of the last 2 indicators as they don't seem to show them.


I would be very interested in hearing from anyone who create these indicators for ProRealTime advanced charts.

Reply With Quote
  #7 (permalink)
 
Nicolas11's Avatar
 Nicolas11 
near Paris, France
 
Experience: Beginner
Platform: -
Trading: -
Posts: 1,071 since Aug 2011
Thanks Given: 2,232
Thanks Received: 1,769

In case it may help, you will find attached to this message a programming guide for ProRealTime.

Source : [PDF] https://www.prorealtime.com/en/pdf/probuilder.pdf

Nicolas

Attached Thumbnails
What language does ProRealTime use?-probuilder_english.pdf  
Visit my NexusFi Trade Journal Reply With Quote
Thanked by:
  #8 (permalink)
Trigger Happy
Queensland, Australia
 
Posts: 8 since Jun 2013
Thanks Given: 3
Thanks Received: 3


Nicolas11 View Post
In case it may help, you will find attached to this message a programming guide for ProRealTime.

Source : [PDF] https://www.prorealtime.com/en/pdf/probuilder.pdf

Nicolas

Thanx Nicolas,

I'm not big into programming, was hoping to find a suitable Auto-Fibonacci indicator to use.

Regards

Reply With Quote




Last Updated on June 3, 2013


© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top
no new posts