|
|
(50 intermediate revisions by the same user not shown) |
Line 1: |
Line 1: |
| {{jcf|January 2020|
| | Doesn't |
|
| |
|
|
| |
|
| {{jcftop}} | | {{wikifier macro|template=nycsaprov|article=Posted Credit Support}} |
| -
| | {{wikifer definition macro|nycsa}} |
| |{{top}} | | {{wikifier paragrapher|nycsa}} |
| {{{1}}}
| |
| |{{top}}
| |
| {{{2}}}
| |
| |{{top}}
| |
| {{{3}}}
| |
| {{jcfbottom}}
| |
| | |
| {{Tabletopsuperflex|align=center|cellpadding=15|verticalalign=top|width=100|border=solid thin gray|background=#F5FAFF}}
| |
| {{cellwidthflex|cellpadding=15|verticalalign=top|width=33|border=solid thin gray|background=#d0e5f5}}
| |
| '''<big>{{Helvetica|What’s in here}}</big>''' <br>The sidebar on the left should help you.
| |
| {{cellwidthflex|cellpadding=15|verticalalign=top|width=34|border=solid thin gray|background=#d0e5f5}}
| |
| '''<big>{{Helvetica|Your favourite pages}}</big>''' <br>What the Google says you’ve been reading this month.
| |
| {{cellwidthflex|cellpadding=15|verticalalign=top|width=33|border=solid thin gray|background=#d0e5f5}}
| |
| '''<big>{{Helvetica|Our favourites searches}}</big>''' <br>Your best questions this month.
| |
| | |
| '''[[Anatomy|Anatomies]]''': Clause-by-clause [[Anatomy]] and [[nutshell]] guides (hit the bar on the left) to [[ISDA Master Agreement|ISDA]] and other [[master trading agreement]]s. These may be incomplete, out of date, out of touch, flippant — well, they ''are'' flippant — but will still be better value and more entertaining than that awful [[FT book about derivatives]]; <br>
| |
| '''[[:category:book review|Book reviews]]''' culled from twenty indolent years sounding off on Amazon; <br>
| |
| '''Much flippancy''' about [[plain English]], [[buzzword]]s, [[technology]], [[negotiation]], [[flannel]], [[Latin]], [[Greeks|Greek]], [[metaphor]] and [[:category:Egg|egg]]s. <br>
| |
| | |
| | |
| {{isdaprov|Cross Default}} under an ISDA: that fabulously pointless {{isdaprov|Event of Default}}. <br>
| |
| {{pbprov|Synthetic prime brokerage}}: What is it? How is it different from natural prime brokerage? Can I iron it? <br>
| |
| {{csaprov|Independent Amount}}: What’s that again? <br>
| |
| [[Assignment by way of security]]: Is it the same as a [[charge]]? <br>
| |
| {{isdaprov|Automatic Early Termination}} {{icds}}’s “clever” end-run for silly insolvency regimes. What’s that all about?<br>
| |
| {{isdaprov|Netting of Payments}}: The ISDA clause that shouldn’t be! <br>
| |
| {{isdaprov|Set-off}}: Is it the same as [[close-out netting]]?<br>
| |
| {{isdaprov|Credit Support Document}}: Is it the same as a [[Credit Support Annex]]? (Spoiler: In America, ''Yes''... in England, ''No.'')<br>
| |
| [[ISDA Comparison]] What are the differences bvetween a {{1992ma}} and a {{2002ma}}? Should I care? (Spoiler: ''No''.)<br>
| |
| Lastly, {{casenote|Tai Hing Cotton Mill|Liu Chong Hing Bank}}: A great case, fallen on hard times.
| |
Doesn't
Sub Wikifier
With Selection.Find
.Text = "{{{article}}}"
.Replacement.Text = "{{{{{template}}}|{{{article}}}}}"
.Forward = True
.Wrap = wdFindContinue
.Format = False
.MatchCase = True
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute Replace:=wdReplaceAll
End Sub
Sub Wikifier definition
Selection.Find.ClearFormatting
Selection.Find.Replacement.ClearFormatting
With Selection.Find
.Text = ChrW(8220) & "([a-z,A-Z,0-9, ]{1,})" & ChrW(8221)
.Replacement.Text = ChrW(8220) & "'''{{nycsaprov|\1}}'''" & ChrW(8221 _
)
.Forward = True
.Wrap = wdFindAsk
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchAllWordForms = False
.MatchSoundsLike = False
.MatchWildcards = True
End With
Selection.Find.Execute Replace:=wdReplaceAll
End Sub
Sub Paragrapher()
Selection.Find.ClearFormatting
Selection.Find.Replacement.ClearFormatting
With Selection.Find
.Text = "Paragraph ([0-9\(\)][!.,;: ]{1,})"
.Replacement.Text = "Paragraph {{nycsaprov|\1}}"
.Forward = True
.Wrap = wdFindAsk
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchAllWordForms = False
.MatchSoundsLike = False
.MatchWildcards = True
End With
Selection.Find.Execute Replace:=wdReplaceAll
End Sub