Search found 36 matches

Go to advanced search

by Deep-Wave
Mon May 30, 2022 1:12 pm
Forum: Request Scripts
Topic: Looking for a skilled coder
Replies: 7
Views: 8475
 
Jump to post

Re: Looking for a skilled coder

Hi there,
what would you like to get done in pine?
Best regards
Mark
by Deep-Wave
Sun Jan 23, 2022 10:49 pm
Forum: Pine Script Q&A
Topic: Array of stings (ticker codes) - converting "string series" to "simple string"
Replies: 1
Views: 922
 
Jump to post

Re: Array of stings (ticker codes) - converting "string series" to "simple string"

Hi Claus, if there isn't a specific reason for using arrays, you could simply define the list as "var string" variables and use these as the inputs to your request security function. It might be easier. https://www.tradingview.com/pine-script-docs/en/v5/language/Variable_declarations.html?highlight=...
by Deep-Wave
Sun Jan 16, 2022 11:54 am
Forum: Introductions
Topic: Hello everyone! any experienced pinescripters here?
Replies: 2
Views: 1245
 
Jump to post

Re: Hello everyone! any experienced pinescripters here?

Hi there,
i think i can spare a few minutes ;)

cheers,
Mark
by Deep-Wave
Sun Jan 16, 2022 11:52 am
Forum: Introductions
Topic: Greetings form Belgium
Replies: 2
Views: 884
 
Jump to post

Re: Greetings form Belgium

Hi Bart,
welcome to the community, kudos on not losing money anymore, that is a very important first step! :wink:
Best of luck with your coding & trading,

Mark
by Deep-Wave
Sat Jan 15, 2022 11:21 am
Forum: Request Scripts
Topic: "Problem" with Take-Profit in a strategy
Replies: 2
Views: 1124
 
Jump to post

Re: "Problem" with Take-Profit in a strategy

Hi Dark Trader, I looked at your code, you are using the strategy.exit function for your stop loss (which uses a stop order to trigger your SL) but you are using the strategy.close function to trigger your take profit. The strategy.close function uses market orders (instead of limit or stop orders) ...
by Deep-Wave
Thu Nov 04, 2021 9:34 pm
Forum: General Trading Discussions
Topic: price value of a specific bar in history
Replies: 1
Views: 4408
 
Jump to post

Re: price value of a specific bar in history

Hi pinecat, you can access the different prices (open, high, low, close) of historical bars with the following operators - []: This code for example references the close of the previous bar close[1] Maybe the free basic pine course of Matt would be a good staring point for you to learn pine. https:/...
by Deep-Wave
Mon Nov 01, 2021 8:12 pm
Forum: Pine Script Q&A
Topic: alertcondition
Replies: 1
Views: 628
 
Jump to post

Re: alertcondition

Hi there, as far as I know and understand it, the logic behind the alerts is that they trigger once the coded condition for the alerts becomes true. If I want a specific alert to trigger first, I would focus on the underlying condition that has to become true first and change the code accordingly .....
by Deep-Wave
Thu Oct 21, 2021 9:18 pm
Forum: Pine Script Q&A
Topic: Invite only automation
Replies: 1
Views: 740
 
Jump to post

Re: Invite only automation

Hi Phoenix,

did you take a look at QuickAlerts?
This plugin is able to automate script access but it is quite pricey...

https://chrome.google.com/webstore/deta ... mblj?hl=en
https://quickalerts.us/u/

Hope this helps.

Cheers, :cool:
by Deep-Wave
Tue Oct 19, 2021 11:21 pm
Forum: Share Your Scripts
Topic: MFI - I don't know what I am doing wrong
Replies: 3
Views: 4678
 
Jump to post

Re: MFI - I don't know what I am doing wrong

Hi zwp, from your picture i guess you plotted to built in MFI indicator at the bottom of your chart right? If you check the source code of that indicator you will see that in that script the hlc3 ((high + low + close)/3) is used for the calculation and you used the close price in your script. That i...
by Deep-Wave
Sun Oct 17, 2021 10:08 am
Forum: Pine Script Q&A
Topic: For loop not counting correctly
Replies: 1
Views: 618
 
Jump to post

Re: For loop not counting correctly

Hi grdnryn, it is a bit difficult to help without seeing the entire code, I am not sure i understand exactly what you want to do. But one thing i noticed in your code is that in your if statement you compare current values to index values, is that intentional? if (high[i] < HH75 and low[i] > LL25) i...

Go to advanced search