”’#####################################################################################
”’#### Script Name: Calculate PIP Value
”’#### Author : Rula Halaseh
”’#### Website :www.Hybridsolutions.com
”’#### Date : 07/05/2012 15:21:30
”’#### Description: Calculates the PIP value for the current chart
”’#####################################################################################
Public Sub main()Dim piplocDim pipDim SymbolSymbol = ChartSymbol(0) 'Returns the Symbol name of the open chartAlertMessage SymbolInfoInteger (ChartSymbol(0),1,piploc)'Saves the PIP location in piploc variableAlertMessage CSTR(piploc) 'displays PIP locationpip=10^piploc 'Calculates PIP ValueAlertMessage CSTR(pip) 'Displays the PIP ValueEnd Sub