How Can I remove pine script file? - pine-script-v5

I am Begginer in pine script and test many Project pine script of trading view.
how can delete some of projected made in trading view pine script?

Related

How do I create a progress bar for multiple mixed commands?

Trying to run a script that saves multiple files, registry keys, etc. to a central location on logout and then restores all the data on login with a progress bar. The backup script isn't the issue. The login script is. The one I have was created by someone else and takes too long.
This is the kind of stuff in the restore script:
reg import 'C:\Backup\msedge.reg' 'HKCU\Software\Microsoft\Edge\'
Expand-Archive -Path 'C:\Backup\edgesettings.zip' "$env:localappdata\Microsoft\Edge\User Data\Default"
It doesn't need to be a popup window. I'm just wondering if it's possible to use Write-Progress on the progress of the commands running and how that would look. Everything I try to find on it talks about using a ForEach() command which requires a variable.
Thanks in advance.

PS script that takes list of computers in an excel sheet, looks at AD for its info, and then puts it in a excel/.txt file

I am pretty much a novice when it comes to PowerShell scripting, yet I have been tasked with researching and creating a script that takes an excel list full of computer names, looks for all of its info in Active Directory( user, org, location, etc.) and then spits it all out in either a .txt or excel format. I have been researching for a while and can't find a way to do it. Any help would be greatly appreciated and would ease the tremendous amount of frustration I am in.

Need Google Script to send an email if specific data added to specific column

I have no background in programming, and am new to Google Scripts and Stack Overflow.
I'd like to create a Google script which automatically sends an email when the word "No" is added to a specific column in Google Sheets.
I have already created and tested the script which sends an email if "No" is added to my spreadsheet, however, I need this process to be automated so that my co-workers must not manually run the script each time.
I would be extremely grateful if anyone would be willing to write the code, or guide me in the right direction.
Set up an 'On Edit' or 'Time Driven' trigger and that should automate it... No code needed.
Use the clock with a pointer icon to the left of the 'Run' icon in the script editor to access the trigger.

Import Inventory Item from Excel to Sage 50 using window scheduled task

How can i import Inventory Items from EXcel to Sage 50 or vise versa automatically using Window Task Scheduler or something similar, without using 3rd Party Application?.
Thanks!
There is no way to do this using windows scheduler without a 3rd party application, the only option to import data to Sage 50 is via the File > Import menu option using CSV files and this cannot be scheduled by any external application.
I suppose you could write a CBT hook to send messages to Sage to drive this but the amount of development effort involved in doing this you may as well buy a 3rd party app.
There are plenty of 3rd party apps on the market I won't mention any here but just google anything like "sage integration" and there are a few that will do this job for you.
HTH
Adam
Workaround. If your import is standard flow of keystrokes, you could use Autohotkey to write up a macro that would do this for you. The scheme I would think would start from a standard desktop profile, where Sage 50 is in a predictable position and available every time the macro is run.
1) Copy the Excel sheet you want to import to a directory where AHK will find it. Of course with named ranges and such prepared and mapped for Sage 50
2) write an AHK script to process the following.
- Test if the excel file is in the "transfer" directory
- Select Sage 50
- Send the complete keystroke selecting each many item function, may be selecting a head menu item, and then a number of down keystrokes, tabs etc. or other gestures to select items needed.
- run the import.
- After successful completion, move the Excel file from the "transfer" directory to a "completed transfers" directory
Autohotkey is a very powerful tool, and there are great support forums here regarding it. If you do not know about it you should! Google it. Good luck.

How to have 2 graphs in one webpage (PERL)

I am completelyy new to perl and i am not sure if I'll phrase my question right so please reply if any clarification needed.
So I have a perl script that works just fine in plotting charts. The only issue is that I can only plot one chart at a time by commenting out the line that plots the other chart.
Both charts should be plotted on the same webpage. If this is impossible, then at least i could have the user choose a link to which chart they want to see first.. Go back.. Then choose the other link! Just a way to have both plots accessible...
Its hard to copy paste the code in since I am using command prompt to edit the script.
I am currently using "SimpleErrorBars" to plot the first graph and "Chart::Points" to plot the other. Since the script is called from a webpage, I use "cgi_png()" to plot (i.e not plotting to an external image)
Is there a module to in perl to allow plotting multiple graphs on same webpage? Or any other suggestions??
Thank you in advance!
I don't understand why you don't have two separate graphs on the same page. As each graph is an image, just have two elements on the page, each of which calls a CGI program to generate one image.
<img src="/path/to/generate/first_graph.cgi?param1=something;param2=something_else/">
<img src="/path/to/generate/second_graph.cgi?param1=something;param2=something_else/">